Skip to content

Commit 63eeb23

Browse files
committed
Remove duplicate requirements files
1 parent dff8c7a commit 63eeb23

File tree

4 files changed

+5
-9
lines changed

4 files changed

+5
-9
lines changed

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Ensure you have `python` and `pip` installed on your
1010
system and then run this command in the project root:
1111

1212
```bash
13-
pip install -r requirements-dev.txt
13+
pip install -e ".[docs]"
1414
make -C docs/ html
1515
```
1616

requirements-dev.txt

Lines changed: 0 additions & 5 deletions
This file was deleted.

requirements.txt

Lines changed: 0 additions & 2 deletions
This file was deleted.

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,8 @@
3737
tests_require=[
3838
'psutil==5.6.6',
3939
"pywin32 >= 227;platform_system=='Windows'"
40-
]
40+
],
41+
extras_require={
42+
'docs': ['sphinx-rtd-theme==0.5.0', 'sphinx==3.2.1'],
43+
}
4144
)

0 commit comments

Comments
 (0)