-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
29 lines (28 loc) · 922 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
from setuptools import setup, find_packages
setup(
name='servant',
packages=find_packages(exclude=['test', 'examples', 'examples.*']),
version = '0.1.4',
description = 'A library for building services',
author='Brian Zambrano',
author_email='[email protected]',
url='https://github.com/clearcare/servant',
install_requires=[
'requests>=2.4.3',
'schematics==1.1.1',
'munch==2.5.0',
],
tests_require=[
'pytest>=2.6.4',
],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Topic :: System :: Distributed Computing',
]
)