-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
54 lines (50 loc) · 1.91 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import os
from setuptools import setup, find_packages
HERE = os.path.abspath(os.path.dirname(__file__))
# The text of the README file
with open(os.path.join(HERE, "README.rst")) as fid:
README = fid.read()
setup(
name="sirius-sdk",
version="2.2.0", # + os.getenv('BUILD_NUMBER'),
description="SDK for developing Smart-Contracts in Self-sovereign-identity world.",
long_description=README,
long_description_content_type="text/x-rst",
url="https://github.com/Sirius-social/sirius-sdk-python",
author="Networks Synergy",
author_email="support@socialsirius.com",
project_urls={
'Chat: Telegram': 'https://t.me/sirius_sdk',
'CI: Travis': 'https://travis-ci.com/github/Sirius-social/sirius-sdk-python/builds',
'GitHub: issues': 'https://github.com/Sirius-social/sirius-sdk-python/issues',
'GitHub: repo': 'https://github.com/Sirius-social/sirius-sdk-python',
},
license="Apache License",
maintainer=', '.join(('Pavel Minenkov <minikspb@gmail.com>',)),
classifiers=[
"License :: OSI Approved :: Apache Software License",
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
],
packages=find_packages(exclude=["tests"]),
python_requires='>=3.7',
include_package_data=True,
install_requires=[
'aiofiles>=0.8.0',
'aiohttp>=3.7.4',
'base58>=2.0.0',
'multipledispatch==0.6.0',
'PyNaCl==1.3.0',
'pyqrcode==1.2.1',
'python-dateutil>=2.8.1',
'pytime>=0.2.0',
'semver>=2.10.1',
'sortedcontainers~=2.3.0'
],
keywords=["didcomm", "sdk", "self-sovereign-identity", "ssi", "smart-contract"],
)