-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (29 loc) · 893 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from setuptools import setup, find_packages
setup(
author='XYZT',
author_email='xyzt@xyzt.cz',
url='https://github.com/TheNoiselessNoise/csfd_scraper',
name='x-csfd-scraper',
version='1.0.2',
description='Simple scraper for CSFD.cz, a Czech movie database.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
install_requires=[
'beautifulsoup4>=4.12.2',
'requests>=2.31.0',
'lxml>=4.9.2',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
license='MIT',
packages=find_packages(),
entry_points={
'console_scripts': [
'x_csfd_scraper = x_csfd_scraper.main:main'
]
}
)