setup: Document Debian packages for dependencies when available.
This commit is contained in:
parent
fea306b278
commit
8f014df515
1 changed files with 6 additions and 6 deletions
12
setup.py
12
setup.py
|
@ -11,18 +11,18 @@ setup(
|
|||
license='GNU AGPLv3+',
|
||||
|
||||
install_requires=[
|
||||
'beancount>=2.2',
|
||||
'PyYAML>=3.0',
|
||||
'regex',
|
||||
'beancount>=2.2', # Debian:beancount
|
||||
'PyYAML>=3.0', # Debian:python3-yaml
|
||||
'regex', # Debian:python3-regex
|
||||
'rt>=2.0',
|
||||
],
|
||||
setup_requires=[
|
||||
'pytest-mypy',
|
||||
'pytest-runner',
|
||||
'pytest-runner', # Debian:python3-pytest-runner
|
||||
],
|
||||
tests_require=[
|
||||
'mypy>=0.770',
|
||||
'pytest',
|
||||
'mypy>=0.770', # Debian:python3-mypy
|
||||
'pytest', # Debian:python3-pytest
|
||||
],
|
||||
|
||||
packages=[
|
||||
|
|
Loading…
Reference in a new issue