-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (49 loc) · 1.47 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
45
46
47
48
49
50
51
52
53
54
55
"""Identity service 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 the identity service."""
with open('README.md') as readme_file:
return readme_file.read()
setup(
name='identity',
version='2.0.0',
description='The identity service for Ocelot, as a Python package.',
long_description=readme(),
keywords='ocelot-saas identity service rest api',
url='http://github.com/ocelot-saas/identity',
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=[
# Duplicated from requirements.txt.
'auth0-python>=2,<3',
'clock==0.0.5',
'falcon>=1,<2',
'falcon-cors>=1,<2',
'gunicorn>=19,<20',
'identity-sdk-py==0.1.1',
'pytz==2016.4',
'requests>=2,<3',
'retry>=0,<1',
'sqlalchemy>=1,<2',
'startup-migrations==0.0.2',
'validation-py==0.0.3',
'validation-common-py==0.1.3'
],
test_suite='tests',
tests_require=[
# Duplicated from requirements.txt.
'coverage>=4,<5',
'coveralls>=1,<2',
'mockito>=0,<1',
],
include_package_data=True,
zip_safe=False
)