forked from tha23rd/py-kraken
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (30 loc) · 829 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
from setuptools import setup, find_packages
with open('README.md') as readme_file:
README = readme_file.read()
setup_args = dict(
name='py-kraken',
version='1.5',
packages=find_packages(),
url='https://github.com/tha23rd/py-kraken',
license='MIT',
author='Zach Bluhm',
author_email='[email protected]',
description='An easy to use module designed to download files from Kraken',
long_description_content_type="text/markdown",
long_description=README,
entry_points={
'console_scripts': ['kraken-download=pykraken.command_line:main'],
}
)
install_requires = [
'beautifulsoup4',
'certifi',
'chardet',
'idna',
'lxml',
'requests',
'soupsieve',
'urllib3'
]
if __name__ == '__main__':
setup(**setup_args, install_requires=install_requires)