File tree Expand file tree Collapse file tree 4 files changed +3
-7
lines changed
Expand file tree Collapse file tree 4 files changed +3
-7
lines changed Original file line number Diff line number Diff line change 11include versioneer.py
22include src/vws/_version.py
33include src/vws/py.typed
4+ include requirements.txt
5+ include dev-requirements.txt
Original file line number Diff line number Diff line change @@ -20,14 +20,12 @@ ignore =
2020 ci
2121 ci/*
2222 codecov.yaml
23- *-requirements.txt
2423 doc8.ini
2524 docs
2625 docs/*
2726 mypy.ini
2827 pylintrc
2928 pytest.ini
30- requirements.txt
3129 spelling_private_dict.txt
3230 tests
3331 tests-pylintrc
Original file line number Diff line number Diff line change @@ -18,17 +18,13 @@ def _get_dependencies(requirements_file: Path) -> List[str]:
1818 return [line for line in lines if not line .startswith ('#' )]
1919
2020
21- _DIRECT_REQUIRES = _get_dependencies (
21+ INSTALL_REQUIRES = _get_dependencies (
2222 requirements_file = Path ('requirements.txt' ),
2323)
2424
25- INSTALL_REQUIRES = _DIRECT_REQUIRES
2625DEV_REQUIRES = _get_dependencies (
2726 requirements_file = Path ('dev-requirements.txt' ),
2827)
29- PACKAGING_REQUIRES = _get_dependencies (
30- requirements_file = Path ('packaging-requirements.txt' ),
31- )
3228
3329setup (
3430 version = versioneer .get_version (), # type: ignore
You can’t perform that action at this time.
0 commit comments