-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
38 lines (35 loc) · 1005 Bytes
/
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
from skbuild import setup
from distutils.sysconfig import get_python_lib
import platform
data = [
'data/*',
'contracts/eosio.bios/*',
'contracts/eosio.msig/*',
'contracts/eosio.system/*',
'contracts/eosio.token/*',
'contracts/eosio.wrap/*',
'contracts/micropython/*',
'test_template.py',
]
if platform.system() == 'Windows':
data.append("pyeoskit.dll")
setup(
name="pyeoskit",
version="1.1.12",
description="Python Toolkit for EOS",
author='learnforpractice',
license="MIT",
url="https://github.com/learnforpractice/pyeoskit",
packages=['pyeoskit'],
# The extra '/' was *only* added to check that scikit-build can handle it.
package_dir={'pyeoskit': 'pysrc'},
package_data={'pyeoskit': data},
install_requires=[
'requests_unixsocket>=0.2.0',
'httpx>=0.19.0',
'base58>=2.1.1',
'asn1>=2.4.2',
'ledgerblue>=0.1.41'
],
include_package_data=True
)