-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (28 loc) · 881 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
from setuptools import setup
setup(name='RWAPIMicroservicePython',
version='3.0.0',
long_description='Python integration library for the RW API microservices',
description='Python integration library for the RW API microservices',
long_description_content_type='text',
author='Vizzuality',
author_email='[email protected]',
url='https://vizzuality.com',
license='MIT',
packages=['RWAPIMicroservicePython'],
install_requires=[
'boto3==1.28.16',
'Flask<=2.3.2',
'requests<=2.31',
],
extras_require={
'dev': [
'codecov==2.1.13',
'Flask==2.3.2',
'moto[logs]==4.1.4',
'pytest==7.4.0',
'pytest-cov==4.1.0',
'pytest-mock==3.11.1',
'requests_mock==1.11.0',
]
},
zip_safe=False)