From 83149e103f67caae9ab7e4ecd6cb9d6be747f86f Mon Sep 17 00:00:00 2001 From: Mathias Brulatout Date: Wed, 20 Mar 2024 10:39:26 +0100 Subject: [PATCH] env: cleanup old references --- MANIFEST.in | 2 +- pyproject.toml | 13 ------------- setup.py | 2 -- 3 files changed, 1 insertion(+), 16 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index cc2c00f..2c9963d 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,4 @@ include requirements.txt -include README.rst +include README.md include CHANGELOG.rst include LICENSE diff --git a/pyproject.toml b/pyproject.toml index 20a1b19..166c58c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,15 +1,3 @@ -[tool.black] -line-length = 120 -target-version = ['py39'] -include = '\.pyi?$' -preview = true - -[tool.isort] -line_length = 120 -case_sensitive = true -profile = "black" -src_paths = ["."] - [tool.pytest.ini_options] addopts = "--cov=. --cov-context=test --durations=0 --durations-min=1.0" asyncio_mode = "auto" @@ -25,7 +13,6 @@ exclude_also = [ ] [tool.pylint] -ignored-classes=["twisted.internet.reactor"] ignore-paths=["docs/"] [tool.pylint."messages control"] diff --git a/setup.py b/setup.py index 55964fc..d807c5b 100644 --- a/setup.py +++ b/setup.py @@ -57,9 +57,7 @@ def run_tests(self): py_modules=py_modules, install_requires=_read_reqs("requirements.txt"), extras_require={ - "tornado": ["tornado"], "asyncio": ["aiohttp"], - "twisted": ["twisted", "treq"], }, data_files=[(".", ["requirements.txt", "tests-requirements.txt"])], tests_require=_read_reqs("tests-requirements.txt"),