forked from bluetyson/hb-downloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (32 loc) · 1.1 KB
/
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
32
33
34
35
#!/usr/bin/env python3
# -*- coding: UTF-8 -*-
import os
from setuptools import setup, find_packages
def read(file_name):
return open(os.path.join(os.path.dirname(__file__), file_name)).read()
setup(
name="hb_downloader", # your package name (i.e. for import)
version="0.7.0",
maintainer="Mark Kindy",
maintainer_email="[email protected]",
author="Brian Schkerke, Mayeul Cantan, Claudius Coenen, Katrin Leinweber, Tobi Grimm, Mark Kindy",
author_email="N/A, [email protected], N/A, N/A, N/A, [email protected]",
description="An automated utility to download your Humble Bundle purchases.",
license="MIT",
keywords="humble bundle download games",
url="https://github.com/MKindy/hb-downloader",
packages=find_packages(exclude=["*test*", "*TEST*"]),
install_requires=[
'requests',
'pyyaml',
'lxml'
],
long_description=read('README.md'),
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"License :: OSI Approved :: MIT",
"Natural Language :: English"
],
zip_safe=True,
)