-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (38 loc) · 1.08 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
"""Identity SDK setup.py"""
from glob import glob
from os.path import basename
from os.path import splitext
from setuptools import find_packages
from setuptools import setup
def readme():
"""Long form readme for secrets."""
with open('README.md') as readme_file:
return readme_file.read()
setup(
name='identity-sdk-py',
version='0.1.1',
description='The Identity service SDK.',
long_description=readme(),
keywords='identity sdk',
url='http://github.com/ocelot-saas/identity-sdk-py',
author='Horia Coman',
author_email='horia141@gmail.com',
license='All right reserved',
packages=find_packages('src'),
package_dir={'': 'src'},
py_modules=[splitext(basename(path))[0] for path in glob('src/*.py')],
install_requires=[
'falcon>=1,<2',
'requests>=2,<3',
'validation-py==0.0.3',
'validation-common-py==0.1.0',
],
test_suite='tests',
tests_require=[
'coverage>=4,<5',
'coveralls>=1,<2',
'tabletest3>=1,<2',
],
include_package_data=True,
zip_safe=False
)