humblebundle-downloader/setup.py

35 lines
890 B
Python
Raw Normal View History

from setuptools import setup
2020-01-19 15:43:10 +01:00
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__,
2020-01-19 15:25:29 +01:00
description='Download your Humble Bundle library',
long_description=long_description,
long_description_content_type='text/markdown',
author='Eddy Hintze',
author_email="eddy@hintze.co",
2020-01-19 15:25:29 +01:00
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',
],
},
2020-04-12 01:18:35 +02:00
python_requires='~=3.4',
install_requires=[
'requests',
'parsel',
],
)