-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
53 lines (50 loc) · 1.56 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
# coding: utf-8
import os
from setuptools import setup, find_packages
from codecs import open
NAME = "xumm-sdk-py"
VERSION = "1.0.4"
# Get the long description from the README.md file
base_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(base_dir, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name=NAME,
version=VERSION,
description='Xumm SDK for Python',
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT',
author='XRPL-Labs',
author_email='[email protected]',
url='https://github.com/XRPL-Labs/xumm-sdk-py',
packages=find_packages(include=('xumm*',)),
include_package_data=True,
install_requires=[
"requests>=2.26.0,<=2.28.2",
"requests-oauthlib>=1.3.1",
"websocket-client>=1.2.3,<=1.4.2",
"six==1.16.0",
"python-dotenv>=0.19.2,<=0.21.1"
],
extras_require={
'develop': [
'pytest==6.2.5',
'websockets==9.1',
'flake8==4.0.1'
]
},
test_suite='pytest',
tests_require=['pytest'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
keywords='xrp, ledger, ripple, xumm, sdk'
)