-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 1004 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
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="hb_organiser",
version="1.0.9",
author="James Whale",
author_email="[email protected]",
description="Organises Humble Bundle bundles based on their platform.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/WhaleJ84/hb_organiser",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Natural Language :: English",
],
entry_points={
'console_scripts': [
'hb_organiser=hb_organiser.cli:main',
],
},
python_requires='>=3.6',
)