Skip to content

Commit fb94f33

Browse files
committed
Move dev dependencies to requirements-dev.txt
1 parent 1aa3f3a commit fb94f33

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

README.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,8 @@ Install:
9595
9696
python3 -m venv env
9797
. env/bin/activate
98-
pip install -e .[dev]
98+
pip install -r requirements-dev.txt
99+
pip install -e .
99100
100101
Run tests:
101102

pyproject.toml

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,13 @@ classifiers = [
2020
"Programming Language :: Python :: Free Threading :: 2 - Beta",
2121
"Intended Audience :: Developers",
2222
]
23+
dependencies = [
24+
"typing_extensions; python_version < '3.11'",
25+
]
2326

2427
[project.urls]
2528
Source = "https://github.com/ZipFile/python-sonyflake-turbo"
2629

27-
[project.optional-dependencies]
28-
dev = [
29-
"flake8",
30-
"flake8-pyproject",
31-
"isort",
32-
"mypy",
33-
"pytest",
34-
"pytest-asyncio",
35-
"pytest-trio",
36-
]
37-
3830
[tool.setuptools]
3931
package-dir = {"" = "src"}
4032

requirements-dev.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
flake8
2+
flake8-pyproject
3+
isort
4+
mypy
5+
pytest
6+
pytest-asyncio
7+
pytest-cov
8+
pytest-trio

0 commit comments

Comments
 (0)