forked from ontio/ontology-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (37 loc) · 1.21 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from codecs import open
from os import path, getcwd
from setuptools import setup, find_packages
with open(path.join(getcwd(), 'description.md')) as f:
long_description = f.read()
setup(
name='ontology-python-sdk',
version='0.1.3',
description='Comprehensive Python library for the Ontology BlockChain.',
long_description=long_description,
long_description_content_type="text/markdown",
author='Ontology',
author_email='contact@ont.io',
maintainer='NashMiao',
maintainer_email='wdx7266@outlook.com',
license='GNU Lesser General Public License v3 (LGPLv3)',
packages=find_packages(exclude=['test_*.py', 'test']),
install_requires=[
'pycryptodomex',
'cryptography',
'ecdsa',
'base58',
'requests'
],
python_requires='>=3.7',
platforms=["all"],
url='https://github.com/ontio/ontology-python-sdk',
classifiers=[
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Programming Language :: Python :: 3.7',
],
)