forked from mayfield/syndicate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (36 loc) · 998 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
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python
from setuptools import setup, find_packages
README = 'README.md'
def long_desc():
try:
import pypandoc
except ImportError:
with open(README) as f:
return f.read()
else:
return pypandoc.convert(README, 'rst')
setup(
name='syndicate',
version='0.99.8',
description='A wrapper for REST APIs',
author='Justin Mayfield',
author_email='[email protected]',
url='https://github.com/mayfield/syndicate/',
license='MIT',
long_description=long_desc(),
packages=find_packages(),
install_requires=[
'requests',
'python-dateutil',
'tornado',
],
test_suite='test',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries',
]
)