-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 771 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 771 Bytes
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
'''
Copyright (c) 2022 Skyflow, Inc.
'''
from setuptools import setup, find_packages
import sys
if sys.version_info < (3, 7):
raise RuntimeError("skyflow requires Python 3.7+")
current_version = '1.15.6'
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=open('README.rst').read(),
install_requires=[
'PyJWT',
'datetime',
'requests',
'aiohttp',
'asyncio',
'cryptography>=3.3.1'
],
python_requires=">=3.7"
)