Skip to content

Commit a54e281

Browse files
committed
Add setup.py
1 parent a0c6f77 commit a54e281

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

setup.py

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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+
)

0 commit comments

Comments
 (0)