Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 35 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,41 @@ build-backend = "setuptools.build_meta"
[project]
name = "table2ascii"
authors = [{name = "Jonah Lawrence", email = "[email protected]"}]
dynamic = ["version", "description"]
dynamic = ["version", "description", "readme", "dependencies", "optional-dependencies"]
requires-python = ">=3.7"
license = {file = "LICENSE"}
keywords = ["table", "ascii", "unicode", "formatter"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Multimedia :: Graphics :: Presentation",
"Topic :: Utilities",
"Topic :: Text Processing :: General",
"Topic :: Printing",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]


[project.urls]
documentation = "https://table2ascii.rtfd.io"
issue-tracker = "https://github.com/DenverCoder1/table2ascii/issues"
repository = "https://github.com/DenverCoder1/table2ascii"


[tool.black]
Expand Down
32 changes: 0 additions & 32 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,39 +60,7 @@ def requirements():
long_description=long_description(),
long_description_content_type="text/markdown",
url="https://github.com/DenverCoder1/table2ascii",
project_urls={
"Documentation": "https://table2ascii.rtfd.io",
"Issue tracker": "https://github.com/DenverCoder1/table2ascii/issues",
},
license="MIT",
packages=["table2ascii"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Multimedia :: Graphics :: Presentation",
"Topic :: Utilities",
"Topic :: Text Processing :: General",
"Topic :: Printing",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
],
keywords="table ascii unicode formatter",
python_requires=">=3.6",
install_requires=requirements(),
extras_require=extras_require,
setup_requires=[],
Expand Down