Host-customized fork of https://github.com/tecnovert/basicswap/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.2 KiB
49 lines
1.2 KiB
import setuptools |
|
import re |
|
import io |
|
|
|
__version__ = re.search( |
|
r'__version__\s*=\s*[\'"]([^\'"]*)[\'"]', |
|
io.open('basicswap/__init__.py', encoding='utf_8_sig').read() |
|
).group(1) |
|
|
|
setuptools.setup( |
|
name="basicswap", |
|
version=__version__, |
|
author="tecnovert", |
|
author_email="tecnovert@tecnovert.net", |
|
description="Simple atomic swap system", |
|
long_description=open("README.md").read(), |
|
long_description_content_type="text/markdown", |
|
url="https://github.com/tecnovert/basicswap", |
|
packages=setuptools.find_packages(), |
|
include_package_data=True, |
|
classifiers=[ |
|
"Programming Language :: Python :: 3", |
|
"License :: OSI Approved :: MIT License", |
|
"Operating System :: Linux", |
|
], |
|
keywords=[ |
|
"crypto", |
|
"cryptocurrency", |
|
"particl", |
|
"bitcoin", |
|
"monero", |
|
], |
|
install_requires=[ |
|
"wheel", |
|
"pyzmq", |
|
"protobuf", |
|
"sqlalchemy", |
|
"python-gnupg", |
|
"Jinja2", |
|
"requests", |
|
"pycryptodome", |
|
], |
|
entry_points={ |
|
"console_scripts": [ |
|
"basicswap-run=bin.basicswap_run:main", |
|
"basicswap-prepare=bin.basicswap_prepare:main", |
|
] |
|
} |
|
)
|
|
|