Added ci for releasing new versions to pypi

This commit is contained in:
Eddy Hintze
2020-01-19 09:25:00 -05:00
commit 62c39d7bd9
9 changed files with 280 additions and 0 deletions

35
setup.py Normal file
View File

@@ -0,0 +1,35 @@
from setuptools import setup
from _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 Humbdle Bundle library',
long_description=long_description,
long_description_content_type='text/markdown',
author='Eddy Hintze',
author_email="eddy@hintze.co",
url="https://gitx.codes/xtream1101/humblebundle-downloader",
license='MIT',
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': [
'hbd=humblebundle_downloader.cli:cli',
],
},
install_requires=[
'requests',
'parsel',
'selenium',
'webdriverdownloader',
],
)