-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
37 lines (34 loc) · 1.02 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
import setuptools
with open("version.py", encoding="utf8") as fp:
exec(fp.read())
long_description = (
open('README.md', encoding="utf8").read()
+ '\n\n' +
open('CHANGELOG.md', encoding="utf8").read()
+ '\n')
setuptools.setup(
name='indykite-sdk-python',
url='https://github.com/indykite/indykite-sdk-python',
version=__version__,
author="Indykite",
author_email="[email protected]",
description='A python SDK package for Indykite\'s system (with protobuf)',
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
license='Apache-2.0',
install_requires=[
'authlib',
'certifi',
'grpcio',
'google-api-python-client',
'google-cloud-storage',
'protobuf',
],
python_requires='~=3.11',
)