-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (37 loc) · 1.03 KB
/
setup.py
File metadata and controls
40 lines (37 loc) · 1.03 KB
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
from setuptools import find_packages, setup
from syncano import __version__
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='syncano',
version=__version__,
description='Python Library for syncano.com api',
long_description=readme(),
author='Syncano',
url='http://syncano.com',
packages=find_packages(exclude=['tests']),
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
],
install_requires=[
'requests==2.7.0',
'certifi==2015.09.06.2',
'ndg-httpsclient==0.4.0',
'pyasn1==0.1.8',
'pyOpenSSL==0.15.1',
'python-slugify==0.1.0',
'six==1.9.0',
'validictory==1.0.0',
],
tests_require=[
'mock>=1.0.1',
'coverage>=3.7.1',
],
)