|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools", "setuptools-scm", "nh3"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "textile" |
| 7 | +authors = [ |
| 8 | + { name = "Dennis Burke", email = "ikirudennis@gmail.com"} |
| 9 | +] |
| 10 | +description = 'Textile processing for python.' |
| 11 | +classifiers = [ |
| 12 | + 'Development Status :: 5 - Production/Stable', |
| 13 | + 'Environment :: Web Environment', |
| 14 | + 'Intended Audience :: Developers', |
| 15 | + 'License :: OSI Approved :: BSD License', |
| 16 | + 'Operating System :: OS Independent', |
| 17 | + 'Programming Language :: Python', |
| 18 | + 'Programming Language :: Python :: 3', |
| 19 | + 'Programming Language :: Python :: 3 :: Only', |
| 20 | + 'Programming Language :: Python :: 3.8', |
| 21 | + 'Programming Language :: Python :: 3.9', |
| 22 | + 'Programming Language :: Python :: 3.10', |
| 23 | + 'Programming Language :: Python :: 3.11', |
| 24 | + 'Programming Language :: Python :: 3.12', |
| 25 | + 'Topic :: Software Development :: Libraries :: Python Modules', |
| 26 | +] |
| 27 | +dynamic = ["version",] |
| 28 | +dependencies = [ |
| 29 | + 'nh3', |
| 30 | + 'regex>1.0; implementation_name != "pypy"', |
| 31 | +] |
| 32 | +requires-python = '>=3.8' |
| 33 | +keywords = ['textile', 'text', 'html markup'] |
| 34 | +# Use the following command to generate a README.txt which is compatible with |
| 35 | +# pypi's readme rendering: |
| 36 | +# pytextile README.textile | sed -e 's/^\t//' > README.txt |
| 37 | +readme = {file = 'README.txt', content-type = 'text/markdown'} |
| 38 | + |
| 39 | +[project.optional-dependencies] |
| 40 | +develop = ['pytest', 'pytest-cov'] |
| 41 | +imagesize = ['Pillow>=3.0.0',] |
| 42 | + |
| 43 | +[project.urls] |
| 44 | +Homepage = "https://github.com/textile/python-textile" |
| 45 | +Repository = "https://github.com/textile/python-textile.git" |
| 46 | +Issues = "https://github.com/textile/python-textile/issues" |
| 47 | + |
| 48 | +[project.scripts] |
| 49 | +pytextile = "textile.__main__:main" |
| 50 | + |
| 51 | +[tool.setuptools.dynamic] |
| 52 | +version = {attr = "textile.__version__"} |
0 commit comments