-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
64 lines (63 loc) · 1.97 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
55
56
57
58
59
60
61
62
63
64
from setuptools import (
find_packages,
setup,
)
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='web3fsnpy',
version='1.0.2',
scripts=['fsnpyscript'] ,
author="Marcel Cure",
author_email="[email protected]",
description="A Fusion extension to the web3.py package",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/FUSIONFoundation/web3fsnpy",
packages=find_packages(),
install_requires=[
"attrs==19.1.0",
"attrdict==2.0.1",
"base58==1.0.3",
"certifi==2019.9.11",
"chardet==3.0.4",
"cytoolz==0.10.1",
"eth-abi==2.0.0",
"eth-hash==0.2.0",
"eth-keyfile==0.5.1",
"eth-keys==0.2.4",
"eth-rlp==0.1.2",
"hexbytes==0.2.0",
"idna==2.8",
"ipfshttpclient==0.4.12",
"jsonschema==3.0.2",
"lru-dict==1.1.6",
"multiaddr==0.0.8",
"netaddr==0.7.19",
"parsimonious==0.8.1",
"protobuf==3.10.0",
"pycryptodome==3.9.0",
"pyrsistent==0.15.4",
"python-dateutil==2.8.0",
"requests==2.22.0",
"rlp==1.1.0",
"six==1.12.0",
"toolz==0.10.0",
"urllib3==1.25.6",
"varint==1.0.2",
"web3==5.5.0",
"websockets==8.1.0",
],
setup_requires=['setuptools-markdown'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
'Programming Language :: Python :: 3.7',
'Natural Language :: English',
],
keywords=[
'Fusion Protocol','blockchain','Decentralized finance',
],
python_requires='>=3.6',
)