File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed
Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change 1+ import os
2+ from setuptools import setup
3+
4+ # Utility function to read the README file.
5+ # Used for the long_description. It's nice, because now 1) we have a top level
6+ # README file and 2) it's easier to type in the README file than to put a raw
7+ # string in below ...
8+ def read (fname ):
9+ return open (os .path .join (os .path .dirname (__file__ ), fname )).read ()
10+
11+ setup (
12+ name = 'appfigures_api' ,
13+ version = '0.0.1' ,
14+ author = 'Huang Yi-Ming' ,
15+ author_email = 'ymhuang@fmbase.tw' ,
16+ description = ('A Python API client for AppFigures' ),
17+ license = 'MIT' ,
18+ keywords = 'appfigures api' ,
19+ url = 'http://packages.python.org/appfigures_api' ,
20+ packages = ['appfigures_api' , 'tests' ],
21+ long_description = read ('README.md' ),
22+ classifiers = [
23+ 'Development Status :: 1 - Planning' ,
24+ 'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries' ,
25+ 'License :: OSI Approved :: MIT License' ,
26+ ],
27+ )
You can’t perform that action at this time.
0 commit comments