-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
41 lines (39 loc) · 1.35 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='mobius-client',
version='1.0.2',
url="https://github.com/mobius-network/mobius-client-python",
author="Mobius Team",
author_email="[email protected]",
description="Mobius DApp Store SDK",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
include_package_data=False,
zip_safe=False,
install_requires=[
'PyJWT',
'stellar-base',
],
extras_require={
'example': ['flask'],
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
],
project_urls={
'Mobius Store': 'https://store.mobius.network',
'Documentation': 'https://docs.mobius.network',
'Bug Reports': 'https://github.com/mobius-network/mobius-client-python/issues',
'Source': 'https://github.com/mobius-network/mobius-client-python/',
},
)