Skip to content

Commit 0a1ae3d

Browse files
authored
chore: Resolve pyproject and setup.py conflicts (#80)
1 parent d8a3564 commit 0a1ae3d

File tree

2 files changed

+35
-33
lines changed

2 files changed

+35
-33
lines changed

Diff for: pyproject.toml

+35-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,41 @@ build-backend = "setuptools.build_meta"
99
[project]
1010
name = "table2ascii"
1111
authors = [{name = "Jonah Lawrence", email = "[email protected]"}]
12-
dynamic = ["version", "description"]
12+
dynamic = ["version", "description", "readme", "dependencies", "optional-dependencies"]
13+
requires-python = ">=3.7"
14+
license = {file = "LICENSE"}
15+
keywords = ["table", "ascii", "unicode", "formatter"]
16+
classifiers = [
17+
"Development Status :: 5 - Production/Stable",
18+
"Environment :: Console",
19+
"Environment :: Web Environment",
20+
"Intended Audience :: Developers",
21+
"Intended Audience :: Education",
22+
"Intended Audience :: End Users/Desktop",
23+
"Intended Audience :: Science/Research",
24+
"License :: OSI Approved :: MIT License",
25+
"Operating System :: OS Independent",
26+
"Programming Language :: Python",
27+
"Programming Language :: Python :: 3",
28+
"Programming Language :: Python :: 3 :: Only",
29+
"Programming Language :: Python :: 3.7",
30+
"Programming Language :: Python :: 3.8",
31+
"Programming Language :: Python :: 3.9",
32+
"Programming Language :: Python :: 3.10",
33+
"Programming Language :: Python :: 3.11",
34+
"Topic :: Multimedia :: Graphics :: Presentation",
35+
"Topic :: Utilities",
36+
"Topic :: Text Processing :: General",
37+
"Topic :: Printing",
38+
"Topic :: Software Development :: Libraries :: Python Modules",
39+
"Typing :: Typed",
40+
]
41+
42+
43+
[project.urls]
44+
documentation = "https://table2ascii.rtfd.io"
45+
issue-tracker = "https://github.com/DenverCoder1/table2ascii/issues"
46+
repository = "https://github.com/DenverCoder1/table2ascii"
1347

1448

1549
[tool.black]

Diff for: setup.py

-32
Original file line numberDiff line numberDiff line change
@@ -60,39 +60,7 @@ def requirements():
6060
long_description=long_description(),
6161
long_description_content_type="text/markdown",
6262
url="https://github.com/DenverCoder1/table2ascii",
63-
project_urls={
64-
"Documentation": "https://table2ascii.rtfd.io",
65-
"Issue tracker": "https://github.com/DenverCoder1/table2ascii/issues",
66-
},
67-
license="MIT",
6863
packages=["table2ascii"],
69-
classifiers=[
70-
"Development Status :: 5 - Production/Stable",
71-
"Environment :: Console",
72-
"Environment :: Web Environment",
73-
"Intended Audience :: Developers",
74-
"Intended Audience :: Education",
75-
"Intended Audience :: End Users/Desktop",
76-
"Intended Audience :: Science/Research",
77-
"License :: OSI Approved :: MIT License",
78-
"Operating System :: OS Independent",
79-
"Programming Language :: Python",
80-
"Programming Language :: Python :: 3",
81-
"Programming Language :: Python :: 3 :: Only",
82-
"Programming Language :: Python :: 3.7",
83-
"Programming Language :: Python :: 3.8",
84-
"Programming Language :: Python :: 3.9",
85-
"Programming Language :: Python :: 3.10",
86-
"Programming Language :: Python :: 3.11",
87-
"Topic :: Multimedia :: Graphics :: Presentation",
88-
"Topic :: Utilities",
89-
"Topic :: Text Processing :: General",
90-
"Topic :: Printing",
91-
"Topic :: Software Development :: Libraries :: Python Modules",
92-
"Typing :: Typed",
93-
],
94-
keywords="table ascii unicode formatter",
95-
python_requires=">=3.6",
9664
install_requires=requirements(),
9765
extras_require=extras_require,
9866
setup_requires=[],

0 commit comments

Comments
 (0)