-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
30 lines (27 loc) · 871 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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='zype',
version='0.2.0',
description='Zype API Python Client',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='zype api client',
url='http://github.com/zype/zype-python',
author='Khurshid Fayzullaev',
author_email='[email protected]',
license='Apache License 2.0',
packages=['zype'],
install_requires=[
'requests',
],
zip_safe=False,
test_suite='nose.collector',
tests_require=['nose']
)