-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
64 lines (59 loc) · 2 KB
/
setup.py
File metadata and controls
64 lines (59 loc) · 2 KB
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
# -*- coding:utf-8 -*-
from setuptools import setup
with open("README.md") as f2:
LONG_DESCRIPTION = f2.read()
kw = {
"version": "1.2.2",
"name": "ark-mainsail",
"keywords": ["api", "ark", "blockchain"],
"author": "Toons",
"author_email": "moustikitos@gmail.com",
"maintainer": "Toons",
"maintainer_email": "moustikitos@gmail.com",
"url": "https://github.com/Moustikitos/python-mainsail",
"project_urls": { # Optional
"Bug Reports": "https://github.com/Moustikitos/python-mainsail/issues",
"Funding":
"https://github.com/Moustikitos/python-mainsail?tab=readme-ov-file"
"#support-this-project",
"Source": "https://github.com/Moustikitos/python-mainsail/",
},
"include_package_data": False,
"description": "Interact with ARK blockchain trough mainsail framework",
"long_description": LONG_DESCRIPTION,
"long_description_content_type": "text/markdown",
"install_requires": [
"requests==2.31.0",
"base58==2.1.1",
"pyaes==1.6.1",
"blspy==2.0.3",
"cSecp256k1==1.1.2"
],
"license": "Copyright 2024, MIT licence",
"classifiers": [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
"packages": [
"mainsail", "mainsail.tx", "mnsl_pool"
],
"package_dir": {
"mainsail": "./mainsail",
"mnsl_pool": "./mnsl_pool"
},
"entry_points": {
'console_scripts': [
'set_pool = mnsl_pool.biom:set_pool',
'dump_prk = mnsl_pool.biom:dump_prk'
]
},
"zip-safe": True
}
setup(**kw)