File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed
Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change 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+ )
You can’t perform that action at this time.
0 commit comments