-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
23 lines (21 loc) · 902 Bytes
/
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
from distutils.core import setup
long_description = open('README.md').read()
setup(name="python-wmata",
version='0.1',
py_modules=["pywmata"],
description="Library for interacting with the WMATA Metro Transparent Data Sets API",
author="Aaron Bycoffe",
author_email = "[email protected]",
license='BSD',
url="https://github.com/bycoffe/python-wmata",
long_description=long_description,
platforms=["any"],
classifiers=["Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)