basicswap/setup.py

50 lines
1.2 KiB
Python
Raw Permalink Normal View History

2019-07-17 15:12:06 +00:00
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",
2019-07-21 18:50:32 +00:00
author_email="tecnovert@tecnovert.net",
2021-01-10 18:30:07 +00:00
description="Simple atomic swap system",
2019-07-17 15:12:06 +00:00
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
2024-06-11 07:56:09 +00:00
url="https://github.com/basicswap/basicswap",
2019-07-17 15:12:06 +00:00
packages=setuptools.find_packages(),
2019-07-26 10:36:44 +00:00
include_package_data=True,
2019-07-17 15:12:06 +00:00
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Linux",
],
2021-01-10 18:30:07 +00:00
keywords=[
"crypto",
"cryptocurrency",
"particl",
"bitcoin",
"monero",
2024-03-31 22:47:14 +00:00
"wownero",
2021-01-10 18:30:07 +00:00
],
2019-07-17 15:12:06 +00:00
install_requires=[
2020-11-07 11:08:07 +00:00
"wheel",
2019-07-17 15:12:06 +00:00
"pyzmq",
2022-10-21 17:00:13 +00:00
"sqlalchemy==1.4.39",
"python-gnupg",
2019-07-25 20:15:08 +00:00
"Jinja2",
2020-12-22 20:48:07 +00:00
"pycryptodome",
"PySocks",
2019-07-17 15:12:06 +00:00
],
entry_points={
"console_scripts": [
"basicswap-run=bin.basicswap_run:main",
2019-07-21 18:50:32 +00:00
"basicswap-prepare=bin.basicswap_prepare:main",
2019-07-17 15:12:06 +00:00
]
2021-01-10 18:30:07 +00:00
}
2019-07-17 15:12:06 +00:00
)