forked from milesrichardson/ParsePy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (38 loc) · 1.35 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
42
43
44
45
import os
from setuptools import setup, Command
from unittest import TextTestRunner, TestLoader
class TestCommand(Command):
'''Run test suite using `python setup.py test `'''
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
'''Run test suite in parse_rest.tests'''
tests = TestLoader().loadTestsFromNames(['parse_rest.tests'])
t = TextTestRunner(verbosity=1)
t.run(tests)
setup(
name='parse_rest',
version='0.2.20141004',
description='A client library for Parse.com\'.s REST API',
url='https://github.com/dgrtwo/ParsePy',
packages=['parse_rest'],
package_data={"parse_rest": [os.path.join("cloudcode", "*", "*")]},
install_requires=['six'],
maintainer='David Robinson',
maintainer_email='[email protected]',
cmdclass={'test': TestCommand},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
]
)