-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (52 loc) · 1.63 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python3
from setuptools import (
setup, find_packages
)
import swap
# README.md
with open("README.md", "r", encoding="utf-8") as readme:
long_description = readme.read()
# requirements.txt
with open("requirements.txt", "r") as _requirements:
requirements = list(map(str.strip, _requirements.read().split("\n")))
setup(
name="swap",
version=swap.__version__,
description=swap.__description__,
long_description=long_description,
long_description_content_type="text/markdown",
license=swap.__license__,
author=swap.__author__,
author_email=swap.__email__,
url="https://github.com/movnetwork/swap",
packages=find_packages(),
keywords=[
"cross-chain", "atomic-swap", "swap", "htlc", "bitcoin", "bytom", "ethereum", "vapor", "xinfin", "cryptocurrencies"
],
entry_points={
"console_scripts": ["swap=swap.cli.__main__:main"]
},
python_requires=">=3.6,<4",
install_requires=requirements,
extras_require={
"tests": [
"pytest>=6.2.5,<7",
"pytest-cov>=3.0.0,<4"
],
"docs": [
"sphinx>=4.3.1,<5",
"sphinx-rtd-theme>=1.0.0,<2",
"sphinx-click>=3.0.2,<4"
]
},
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development"
],
include_package_data=True
)