-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (33 loc) · 1.11 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
import subprocess
requirements = [
'google-api-python-client==2.87.0',
'grpcio==1.54.3',
]
version = subprocess.check_output(['git', 'describe', '--tags']).strip().decode('utf-8')
with open('README.md') as f:
readme = f.read()
setup(
name='AIaaS_interface',
version=version,
author='AIaaS-Backend-Team',
author_email='m.mahdi.m79@gmail.com',
packages=find_packages(),
license='Proprietary',
description='Auto generate python codes of AIaaS gRPC interface. gRPCs available at: https://github.com/ECTLab/AIaaS-gRPC-protos',
long_description=readme,
install_requires=requirements,
tests_require=requirements,
keywords='AIaaS gRPC interface python',
classifiers=[
'Development Status :: 0 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: Other/Proprietary License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Utilities',
],
)