-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (37 loc) · 1.72 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='Aruna-Python-API',
version="2.0.2",
description='Aruna Object Storage Python API builds',
long_description=open('README.md', 'r').read(),
long_description_content_type='text/markdown',
url='https://github.com/ArunaStorage/python-api',
license='Apache 2.0',
author='Sebastian Beyvers, Jannis Hochmuth, Lukas Brehm',
author_email='[email protected], '
# packages=find_packages('aruna')
packages=['aruna',
'aruna.api',
'aruna.api.dataproxy', 'aruna.api.dataproxy.services', 'aruna.api.dataproxy.services.v2',
'aruna.api.hooks', 'aruna.api.hooks.services', 'aruna.api.hooks.services.v2',
'aruna.api.notification', 'aruna.api.notification.services', 'aruna.api.notification.services.v2',
'aruna.api.storage',
'aruna.api.storage.models', 'aruna.api.storage.models.v2',
'aruna.api.storage.services', 'aruna.api.storage.services.v2',
'protoc_gen_openapiv2.options'],
package_data={'aruna.api.dataproxy.services.v2': ['*.pyi'],
'aruna.api.hooks.services.v2': ['*.pyi'],
'aruna.api.notification.services.v2': ['*.pyi'],
'aruna.api.storage.models.v2': ['*.pyi'],
'aruna.api.storage.services.v2': ['*.pyi'],
'protoc_gen_openapiv2.options': ['*.pyi'],
},
install_requires=[
'protobuf',
'grpcio',
'google-api-python-client'
],
)