-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
48 lines (41 loc) · 1.5 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
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import find_packages, setup
with open('README.md') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
requirements = ['requests', 'python-dotenv', 'deprecation', 'protobuf~=4.21.10', 'grpcio', 'google-api-python-client', 'boto3']
# removed in 0.7.1 test_requirements = ['pytest']
setup(
author='Modzy',
author_email='[email protected]',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
description="Modzy's Python SDK queries and deploys models, submits inference jobs and returns results directly to your editor.",
python_requires='>=3.7',
install_requires=requirements,
long_description=readme,
long_description_content_type='text/markdown',
include_package_data=True,
keywords='modzy, sdk',
name='modzy-sdk',
packages=find_packages(),
package_data={
"": ["*.pyi"]
},
# removed in 0.7.1 test_suite='tests',
# removed in 0.7.1 tests_require=test_requirements,
url='https://github.com/modzy/sdk-python',
version='0.11.6',
zip_safe=False,
)