Skip to content

Commit 965a5c9

Browse files
committed
fix: maybe the classifier is deprecated
1 parent 7ab2080 commit 965a5c9

File tree

4 files changed

+16
-14
lines changed

4 files changed

+16
-14
lines changed

pyproject.toml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
[project]
2+
license = {text = "MIT"}
3+
14
[tool.black]
25
line-length = 120
36

@@ -8,3 +11,16 @@ force_grid_wrap = 8
811
ensure_newline_before_comments = true
912
line_length = 120
1013
virtual_env = "env"
14+
15+
[tool.setuptools.bdist_wheel]
16+
universal = true
17+
18+
[tool.pytest.ini_options]
19+
asyncio_mode = "auto"
20+
asyncio_default_fixture_loop_scope = "function"
21+
22+
[tool.flake8]
23+
# ignore E501 for line length
24+
# ignore W503 for line break before binary operator
25+
ignore = ["E501", "W503"]
26+
max-line-length = 120

setup.cfg

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

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@
9797
classifiers=[
9898
"Development Status :: 5 - Production/Stable",
9999
"Intended Audience :: Developers",
100-
"License :: OSI Approved :: MIT License",
101100
"Operating System :: OS Independent",
102101
"Programming Language :: Python",
103102
"Programming Language :: Python :: 3.9",

setup_analytics.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@
6060
classifiers=[
6161
"Development Status :: 5 - Production/Stable",
6262
"Intended Audience :: Developers",
63-
"License :: OSI Approved :: MIT License",
6463
"Operating System :: OS Independent",
6564
"Programming Language :: Python",
6665
"Programming Language :: Python :: 3.9",

0 commit comments

Comments
 (0)