-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (43 loc) · 1.19 KB
/
setup.py
File metadata and controls
47 lines (43 loc) · 1.19 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
'''
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.1'
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*']),
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=[
'python_dateutil >= 2.5.3',
'setuptools >= 75.3.3',
'urllib3 >= 1.25.3, < 3',
'pydantic >= 2',
'typing-extensions >= 4.7.1',
'DateTime~=5.5',
'PyJWT >= 2.12, < 3',
'requests~=2.32.3',
'coverage',
'cryptography',
'python-dotenv >= 1.0, < 2',
'httpx'
],
extras_require={
'dev': [
'codespell',
'ruff'
]
},
python_requires=">=3.9",
)