forked from xtream1101/humblebundle-downloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 890 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
from humblebundle_downloader._version import __version__
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='humblebundle-downloader',
packages=['humblebundle_downloader'],
version=__version__,
description='Download your Humble Bundle library',
long_description=long_description,
long_description_content_type='text/markdown',
author='Eddy Hintze',
author_email="[email protected]",
url="https://github.com/xtream1101/humblebundle-downloader",
license='MIT',
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': [
'hbd=humblebundle_downloader.cli:cli',
],
},
python_requires='~=3.4',
install_requires=[
'requests',
'parsel',
],
)