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 1
1
include versioneer.py
2
2
include src/vws/_version.py
3
3
include 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 =
20
20
ci
21
21
ci/*
22
22
codecov.yaml
23
- *-requirements.txt
24
23
doc8.ini
25
24
docs
26
25
docs/*
27
26
mypy.ini
28
27
pylintrc
29
28
pytest.ini
30
- requirements.txt
31
29
spelling_private_dict.txt
32
30
tests
33
31
tests-pylintrc
Original file line number Diff line number Diff line change @@ -18,17 +18,13 @@ def _get_dependencies(requirements_file: Path) -> List[str]:
18
18
return [line for line in lines if not line .startswith ('#' )]
19
19
20
20
21
- _DIRECT_REQUIRES = _get_dependencies (
21
+ INSTALL_REQUIRES = _get_dependencies (
22
22
requirements_file = Path ('requirements.txt' ),
23
23
)
24
24
25
- INSTALL_REQUIRES = _DIRECT_REQUIRES
26
25
DEV_REQUIRES = _get_dependencies (
27
26
requirements_file = Path ('dev-requirements.txt' ),
28
27
)
29
- PACKAGING_REQUIRES = _get_dependencies (
30
- requirements_file = Path ('packaging-requirements.txt' ),
31
- )
32
28
33
29
setup (
34
30
version = versioneer .get_version (), # type: ignore
You can’t perform that action at this time.
0 commit comments