forked from sebix/python-textile
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
replace old setup.py config with pyproject.toml
- Loading branch information
1 parent
8b26327
commit 739f758
Showing
3 changed files
with
43 additions
and
54 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
[build-system] | ||
requires = ["setuptools", "setuptools-scm"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "textile" | ||
authors = [ | ||
{ name = "Dennis Burke", email = "[email protected]"} | ||
] | ||
description = 'Textile processing for python.' | ||
classifiers = [ | ||
'Development Status :: 5 - Production/Stable', | ||
'Environment :: Web Environment', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: BSD License', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3 :: Only', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
'Programming Language :: Python :: 3.12', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
] | ||
dynamic = ["version",] | ||
dependencies = [ | ||
'html5lib>=1.0.1', | ||
'regex>1.0; implementation_name != "pypy"', | ||
] | ||
requires-python = '>=3.8' | ||
keywords = ['textile', 'text', 'html', 'markup'] | ||
|
||
[project.optional-dependencies] | ||
develop = ['pytest', 'pytest-cov'] | ||
imagesize = ['Pillow>=3.0.0',] | ||
|
||
[python.scripts] | ||
pytextile = "textile.__main__:main" | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "textile.__version__"} |