-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (33 loc) · 919 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
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
setup(name="Restpose",
version='0.7.8dev',
packages=find_packages(),
include_package_data=True,
author='Richard Boulton',
author_email='richard@tartarus.org',
description='Client for the Restpose Server',
long_description=__doc__,
zip_safe=False,
platforms='any',
license='MIT',
url='https://github.com/restpose/restpose-py',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Operating System :: Unix',
],
install_requires=[
'restkit>=3.2.3',
'six',
],
setup_requires=[
],
tests_require=[
'coverage',
],
)