mirror of
https://github.com/bitromortac/lndmanage.git
synced 2026-08-13 12:33:37 +02:00
setup: losen requirements
Newest versions will be installed automatically, setup.py tracks versions that we tested with.
This commit is contained in:
parent
075c4ee5b3
commit
1a2b4d1952
2 changed files with 15 additions and 28 deletions
|
|
@ -1,13 +1 @@
|
|||
cycler==0.10.0
|
||||
decorator==4.4.2
|
||||
googleapis-common-protos==1.52.0
|
||||
grpcio==1.31.0
|
||||
grpcio-tools==1.31.0
|
||||
kiwisolver==1.2.0
|
||||
networkx==2.4
|
||||
numpy==1.19.1
|
||||
protobuf==3.12.4
|
||||
Pygments==2.7.4
|
||||
pyparsing==2.4.7
|
||||
python-dateutil==2.8.1
|
||||
six==1.15.0
|
||||
.
|
||||
29
setup.py
29
setup.py
|
|
@ -3,7 +3,7 @@ import re, setuptools
|
|||
with open("README.md", "r") as fh:
|
||||
long_description = fh.read()
|
||||
|
||||
with open('./lndmanage/__init__.py', 'r') as f:
|
||||
with open("./lndmanage/__init__.py", "r") as f:
|
||||
MATCH_EXPR = "__version__[^'\"]+(['\"])([^'\"]+)"
|
||||
VERSION = re.search(MATCH_EXPR, f.read()).group(2)
|
||||
|
||||
|
|
@ -19,26 +19,25 @@ setuptools.setup(
|
|||
author="bitromortac",
|
||||
author_email="bitromortac@protonmail.com",
|
||||
description="Channel management tool for lightning network daemon (LND) "
|
||||
"operators.",
|
||||
"operators.",
|
||||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
url="https://github.com/bitromortac/lndmanage",
|
||||
packages=setuptools.find_packages(),
|
||||
install_requires=[
|
||||
'cycler==0.10.0',
|
||||
'decorator==4.4.2',
|
||||
'googleapis-common-protos==1.52.0',
|
||||
'grpcio==1.31.0',
|
||||
'grpcio-tools==1.31.0',
|
||||
'kiwisolver==1.2.0',
|
||||
'networkx==2.4',
|
||||
'numpy==1.19.1',
|
||||
'protobuf==3.12.4',
|
||||
'Pygments==2.7.4',
|
||||
'pyparsing==2.4.7',
|
||||
'python-dateutil==2.8.1',
|
||||
'six==1.15.0',
|
||||
"googleapis-common-protos>=1.52.0",
|
||||
"grpcio>=1.31.0",
|
||||
"grpcio-tools>=1.31.0",
|
||||
"networkx>=2.4",
|
||||
"numpy>=1.19.1",
|
||||
"protobuf>=3.12.4",
|
||||
"Pygments>=2.7.4",
|
||||
],
|
||||
extras_require={
|
||||
"test": [
|
||||
"lnregtest>=0.2.1",
|
||||
]
|
||||
},
|
||||
include_package_data=True,
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue