forked from bryanhelmig/pyrise
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
26 lines (24 loc) · 1.11 KB
/
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
25
26
#!/usr/bin/env python
#from distutils.core import setup
from setuptools import setup
setup(name="pyrise",
version='0.5.3.1.post1',
description="Python wrapper for 37Signals Highrise",
long_description="A work in progress, but one that will be awesome when finished. Pyrise gives you class objects that work a lot like Django models, making the whole experience of integrating with Highrise just a little more awesome and Pythonic.",
license="MIT License",
author="Jason Ford",
author_email="[email protected]",
url="http://github.com/feedmagnet/pyrise",
py_modules=['pyrise'],
install_requires = ['httplib2', 'requests', 'six'],
keywords= "python 37signals highrise api wrapper feedmagnet",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
)