-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
24 lines (22 loc) · 941 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
24
#!/usr/bin/env python
from setuptools import setup
setup(name='fluidinfo.py',
version='1.2.0',
description="A thin wrapper for Fluidinfo's RESTful API",
author='Nicholas Tollervey (based upon work by Sanghyeon Seo)',
author_email='[email protected]',
url='http://fluidinfo.com',
py_modules=['fluidinfo',],
license='MIT',
install_requires=['requests',],
long_description=open('README.rst').read(),
classifiers=['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Database',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries']
)