Cleanup redondant/useless requirements
This commit is contained in:
parent
d12e232a6f
commit
c2df85c751
|
@ -35,8 +35,6 @@ setup(
|
||||||
],
|
],
|
||||||
"dev": [
|
"dev": [
|
||||||
"psycopg2-binary",
|
"psycopg2-binary",
|
||||||
"mypy",
|
|
||||||
"pylint",
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
|
@ -2,7 +2,7 @@ all: lint
|
||||||
|
|
||||||
include ../../tools/python.mk
|
include ../../tools/python.mk
|
||||||
|
|
||||||
PIP_INSTALL := --editable .[dev]
|
PIP_INSTALL := --editable .
|
||||||
PYLINT_ARG := airtime-celery
|
PYLINT_ARG := airtime-celery
|
||||||
MYPY_ARG := airtime-celery
|
MYPY_ARG := airtime-celery
|
||||||
|
|
||||||
|
|
|
@ -24,12 +24,5 @@ setup(
|
||||||
"kombu==4.6.10",
|
"kombu==4.6.10",
|
||||||
"configobj",
|
"configobj",
|
||||||
],
|
],
|
||||||
extras_require={
|
|
||||||
"prod": [],
|
|
||||||
"dev": [
|
|
||||||
"mypy",
|
|
||||||
"pylint",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
)
|
)
|
||||||
|
|
|
@ -35,14 +35,8 @@ setup(
|
||||||
"pycairo==1.19.1",
|
"pycairo==1.19.1",
|
||||||
],
|
],
|
||||||
extras_require={
|
extras_require={
|
||||||
"prod": [],
|
|
||||||
"dev": [
|
"dev": [
|
||||||
"distro",
|
"distro",
|
||||||
"mypy",
|
|
||||||
"pylint",
|
|
||||||
"pytest",
|
|
||||||
"pytest-cov",
|
|
||||||
"pytest-xdist",
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
|
|
|
@ -2,7 +2,7 @@ all: lint test
|
||||||
|
|
||||||
include ../../tools/python.mk
|
include ../../tools/python.mk
|
||||||
|
|
||||||
PIP_INSTALL := --editable .[dev]
|
PIP_INSTALL := --editable .
|
||||||
PYLINT_ARG := api_clients tests
|
PYLINT_ARG := api_clients tests
|
||||||
MYPY_ARG := api_clients tests
|
MYPY_ARG := api_clients tests
|
||||||
PYTEST_ARG := --cov=api_clients tests
|
PYTEST_ARG := --cov=api_clients tests
|
||||||
|
|
|
@ -24,15 +24,5 @@ setup(
|
||||||
"python-dateutil>=2.7.0",
|
"python-dateutil>=2.7.0",
|
||||||
"requests",
|
"requests",
|
||||||
],
|
],
|
||||||
extras_require={
|
|
||||||
"prod": [],
|
|
||||||
"dev": [
|
|
||||||
"mypy",
|
|
||||||
"pylint",
|
|
||||||
"pytest",
|
|
||||||
"pytest-cov",
|
|
||||||
"pytest-xdist",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
)
|
)
|
||||||
|
|
|
@ -2,7 +2,7 @@ all: lint
|
||||||
|
|
||||||
include ../../tools/python.mk
|
include ../../tools/python.mk
|
||||||
|
|
||||||
PIP_INSTALL := --editable .[dev]
|
PIP_INSTALL := --editable .
|
||||||
PYLINT_ARG := liquidsoap pypo
|
PYLINT_ARG := liquidsoap pypo
|
||||||
MYPY_ARG := liquidsoap pypo
|
MYPY_ARG := liquidsoap pypo
|
||||||
|
|
||||||
|
|
|
@ -38,12 +38,5 @@ setup(
|
||||||
"pytz",
|
"pytz",
|
||||||
"requests",
|
"requests",
|
||||||
],
|
],
|
||||||
extras_require={
|
|
||||||
"prod": [],
|
|
||||||
"dev": [
|
|
||||||
"mypy",
|
|
||||||
"pylint",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue