-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
37 lines (36 loc) · 1.09 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
from setuptools import find_namespace_packages, setup
if __name__ == '__main__':
setup(
version='4.6.9',
name='authomize-rest-api-client',
author='Authomize inc.',
license='MIT',
author_email='info@authomize.com',
description='Authomize REST API Python Client',
packages=find_namespace_packages(include=['authomize.*']),
package_data={
'authomize.rest_api_client': [
'openapi/connectors_rest_api/*.json',
'openapi/external_rest_api/*.json',
'py.typed',
],
},
install_requires=[
'requests~=2.31',
'api-client-pydantic~=1.2',
],
extras_require={
'test': [
'coverage~=5.2',
'flake8~=4.0',
'flake8-isort~=4.0',
'mypy~=0.910',
'pyhamcrest~=2.0',
'pytest~=7.2',
'types-requests',
],
'codegen': [
'datamodel-code-generator~=0.11',
],
},
)