-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (39 loc) · 1.32 KB
/
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
37
38
39
40
41
42
43
import setuptools
from scappamento.__about__ import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='scappamento',
version=__version__,
author='Lorenzo Bunino',
author_email="bunino.lorenzo@gmail.com",
description="B2B automation for music stores",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/lorenzobunino/scappamento",
packages=setuptools.find_packages(), # TODO: find_packages vs hand-compiled list
entry_points={
'console_scripts': [
'scappamento = scappamento.__main__:main'
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows", # TODO: fix path handling and
# change "Microsoft :: Windows" to "OS Independent"
],
install_requires=[
'pandas>=1.1.2',
'xlrd>=2.0.1',
'xlutils>=2.0.0',
'requests~=2.24.0',
'selenium~=3.141.0',
'beautifulsoup4~=4.9.3',
'mysql-connector-python~=8.0.11',
'chromedriver-autoinstaller>=0.2.2',
'xlwt>=1.3.0',
'olefile>=0.46'
],
python_requires='>=3.6'
)