-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (44 loc) · 1.31 KB
/
Copy pathsetup.py
File metadata and controls
48 lines (44 loc) · 1.31 KB
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
'''
Copyright (c) 2022 Skyflow, Inc.
'''
from setuptools import setup, find_packages
import sys
if sys.version_info < (3, 9):
raise RuntimeError("skyflow requires Python 3.9+")
current_version = '2.1.2'
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='skyflow',
version=current_version,
author='Skyflow',
author_email='service-ops@skyflow.com',
packages=find_packages(where='.', exclude=['test*']),
# Ship PEP 561 markers so type checkers (mypy/pyright) see the SDK's types.
package_data={
'skyflow': ['py.typed'],
'skyflow.generated.rest': ['py.typed'],
},
url='https://github.com/skyflowapi/skyflow-python/',
license='LICENSE',
description='Skyflow SDK for the Python programming language',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
'pydantic >= 2.0.0',
'typing-extensions >= 4.0.0',
'PyJWT >= 2.12, < 3',
'requests >= 2.28.0',
'cryptography >= 44.0.2',
'httpx >= 0.21.2',
'python-dotenv >= 1.1.0, < 2',
],
extras_require={
'dev': [
'codespell >= 2.4.1',
'ruff >= 0.9.0',
'pre-commit >= 4.3.0',
]
},
python_requires=">=3.9",
)