forked from disqus/python-phabricator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (35 loc) · 1.13 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python
import sys
from setuptools import setup, find_packages
tests_requires = ['responses>=0.12']
if sys.version_info[:2] < (2, 7):
tests_requires.append('unittest2')
if sys.version_info[:2] <= (3, 3):
tests_requires.append('mock')
setup(
name='phabricator',
version='0.8.1',
author='Disqus',
author_email='[email protected]',
url='http://github.com/disqus/python-phabricator',
description='Phabricator API Bindings',
packages=find_packages(),
zip_safe=False,
install_requires=['requests>=2.22'],
test_suite='phabricator.tests.test_phabricator',
extras_require={
'tests': tests_requires,
},
include_package_data=True,
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
)