forked from Sila-Money/sila-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (31 loc) · 976 Bytes
/
setup.py
File metadata and controls
52 lines (31 loc) · 976 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
from setuptools import setup, find_packages
setup(
name='silasdk',
version='0.2.53',
description='Sila Python library for message signing and api wrapper',
url="https://github.com/Sila-Money/Sila-Python",
author='Sila',
author_email='support@silamoney.com',
license='Apache',
classifiers=[
# How stable is your project?
# 3 - Alpha, 4 - Beta,5 - Production/Stable
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9.13'
],
keywords='Sila v0.2.53 Rest API',
packages=find_packages(exclude=["tests", "tests.*"]),
install_requires=[
"requests==2.31.0",
"pyaml>=15.8.2",
"eth-account==0.8.0",
"web3==6.5.0"
],
zip_safe=False,
include_package_data=True,
extras_require={},
package_data={},
entry_points={}
)