-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 841 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 841 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
"""
Detail see: https://github.com/pypa/sampleproject/blob/master/setup.py
"""
from setuptools import setup, find_packages
LONG_DESCRIPTION = 'Document see https://github.com/hyperchaincn/qsnark-python-sdk'
setup(
name='qsnark-python-sdk',
version='1.0.1',
keywords='Qsnark, SDK',
description='Qsnark SDK for Python',
long_description=LONG_DESCRIPTION,
license='MIT License',
url='https://github.com/hyperchaincn/qsnark-python-sdk',
author='hyperchaincn',
author_email='support.dev@hyperchain.cn',
packages=find_packages(exclude=['dist']),
install_requires=[
'requests>=v2.19.0,<3'
],
python_requires='>=3.*',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
"Operating System :: OS Independent"
],
)