forked from SeanOC/sharpy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (26 loc) · 901 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
25
26
27
28
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError, err:
from distutils.core import setup
from sharpy import VERSION
setup(
name='Sharpy',
version=".".join(map(str, VERSION)),
description='Python client for the Cheddar Getter API (http://cheddargetter.com).',
author="Sean O'Connor",
author_email="sean@saaspire.com",
url="https://github.com/Saaspire/sharpy",
packages=['sharpy'],
license="BSD",
long_description=open('README.rst').read(),
install_requires=['httplib2', 'elementtree', 'python-dateutil<2.0'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)