mirror of
https://github.com/basicswap/basicswap.git
synced 2025-11-05 18:38:09 +01:00
Add to Github
This commit is contained in:
37
setup.py
Normal file
37
setup.py
Normal file
@@ -0,0 +1,37 @@
|
||||
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="hello@particl.io",
|
||||
description="Particl atomic swap demo",
|
||||
long_description=open("README.md").read(),
|
||||
long_description_content_type="text/markdown",
|
||||
url="https://github.com/tecnovert/basicswap",
|
||||
packages=setuptools.find_packages(),
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Operating System :: Linux",
|
||||
],
|
||||
install_requires=[
|
||||
"pyzmq",
|
||||
"plyvel",
|
||||
"protobuf",
|
||||
"sqlalchemy",
|
||||
],
|
||||
entry_points={
|
||||
"console_scripts": [
|
||||
"basicswap-run=bin.basicswap_run:main",
|
||||
]
|
||||
},
|
||||
test_suite="tests.test_suite"
|
||||
)
|
||||
Reference in New Issue
Block a user