/ pyproject.toml
pyproject.toml
1 [build-system] 2 requires = ["pdm-backend"] 3 build-backend = "pdm.backend" 4 5 [project] 6 name = "ansito" 7 description = "Translate ANSI codes to any other format." 8 authors = [{name = "Timothée Mazzucotelli", email = "dev@pawamoy.fr"}] 9 license = {text = "ISC"} 10 readme = "README.md" 11 requires-python = ">=3.8" 12 keywords = [] 13 dynamic = ["version"] 14 classifiers = [ 15 "Development Status :: 4 - Beta", 16 "Intended Audience :: Developers", 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", 26 "Topic :: Utilities", 27 "Typing :: Typed", 28 ] 29 dependencies = [] 30 31 [project.urls] 32 Homepage = "https://pawamoy.github.io/ansito" 33 Documentation = "https://pawamoy.github.io/ansito" 34 Changelog = "https://pawamoy.github.io/ansito/changelog" 35 Repository = "https://github.com/pawamoy/ansito" 36 Issues = "https://github.com/pawamoy/ansito/issues" 37 Discussions = "https://github.com/pawamoy/ansito/discussions" 38 Gitter = "https://gitter.im/ansito/community" 39 Funding = "https://github.com/sponsors/pawamoy" 40 41 [project.scripts] 42 ansito = "ansito.cli:main" 43 44 [tool.pdm] 45 version = {source = "scm"} 46 47 [tool.pdm.build] 48 package-dir = "src" 49 editable-backend = "editables"