forked from Mirrors/humblebundle-downloader
Added ci for releasing new versions to pypi
This commit is contained in:
35
setup.py
Normal file
35
setup.py
Normal 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',
|
||||
],
|
||||
|
||||
)
|
||||
Reference in New Issue
Block a user