Skip to content

Commit 47817df

Browse files
committed
Add a setup.py file
Many thanks to Stefan Zink (@zink-chimaera) in #11
1 parent cbaf0e3 commit 47817df

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

setup.py

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
#!/usr/bin/env python3
2+
# -*- coding: UTF-8 -*-
3+
4+
5+
import os
6+
from setuptools import setup, find_packages
7+
8+
9+
def read(file_name):
10+
return open(os.path.join(os.path.dirname(__file__), file_name)).read()
11+
12+
setup(
13+
name="humble_downloader", # your package name (i.e. for import)
14+
version="0.5.0",
15+
maintainer="Mayeul Cantan",
16+
maintainer_email="mayeul.cantan@live.fr",
17+
author="Brian Schkerke, Mayeul Cantan",
18+
author_email="N/A, mayeul.cantan@live.fr",
19+
description="An automated utility to download your Humble Bundle purchases.",
20+
license="MIT",
21+
keywords="humble bundle download games",
22+
url="https://github.com/MayeulC/hb-downloader",
23+
packages=find_packages(exclude=["*test*", "*TEST*"]),
24+
install_requires=[
25+
'requests',
26+
'pyyaml',
27+
],
28+
long_description=read('README.md'),
29+
classifiers=[
30+
"Development Status :: 4 - Beta",
31+
"Topic :: Utilities",
32+
"License :: OSI Approved :: MIT",
33+
"Natural Language :: English"
34+
],
35+
zip_safe=True,
36+
)

0 commit comments

Comments
 (0)