|
| 1 | +[build-system] |
| 2 | +requires = [ |
| 3 | + "setuptools>=61.0", |
| 4 | + "wheel" |
| 5 | +] |
| 6 | +build-backend = "setuptools.build_meta" |
| 7 | + |
| 8 | +[project] |
| 9 | +name = "project-markers" |
| 10 | +version = "1.0.0" |
| 11 | +description = "List of files that indicate a project root" |
| 12 | +authors = [ |
| 13 | + { name = "Adam Lui", email = "adam@kudoai.com" } |
| 14 | +] |
| 15 | +readme = "docs/README.md" |
| 16 | +license = "MIT" |
| 17 | +license-files = [ |
| 18 | + "docs/LICENSE.md" |
| 19 | +] |
| 20 | +requires-python = ">=2.6,<4.0" |
| 21 | +keywords = [ |
| 22 | + "detection", |
| 23 | + "files", |
| 24 | + "json", |
| 25 | + "markers", |
| 26 | + "project", |
| 27 | + "root" |
| 28 | +] |
| 29 | +classifiers = [ |
| 30 | + "Development Status :: 5 - Production/Stable", |
| 31 | + "Intended Audience :: Developers", |
| 32 | + "Intended Audience :: Information Technology", |
| 33 | + "Intended Audience :: Science/Research", |
| 34 | + "Natural Language :: English", |
| 35 | + "Operating System :: OS Independent", |
| 36 | + "Programming Language :: Python", |
| 37 | + "Programming Language :: Python :: 2", |
| 38 | + "Programming Language :: Python :: 2.6", |
| 39 | + "Programming Language :: Python :: 2.7", |
| 40 | + "Programming Language :: Python :: 3", |
| 41 | + "Programming Language :: Python :: 3.8", |
| 42 | + "Programming Language :: Python :: 3.9", |
| 43 | + "Programming Language :: Python :: 3.10", |
| 44 | + "Programming Language :: Python :: 3.11", |
| 45 | + "Programming Language :: Python :: 3.12", |
| 46 | + "Programming Language :: Python :: 3.13", |
| 47 | + "Programming Language :: Python :: 3.14", |
| 48 | + "Programming Language :: Python :: 3.15", |
| 49 | + "Topic :: Software Development", |
| 50 | + "Topic :: Software Development :: Libraries", |
| 51 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 52 | + "Topic :: Software Development :: Version Control", |
| 53 | + "Topic :: Utilities" |
| 54 | +] |
| 55 | + |
| 56 | +[project.urls] |
| 57 | +Changelog = "https://github.com/adamlui/python-utils/releases/tag/project-markers-1.0.0" |
| 58 | +Documentation = "https://github.com/adamlui/python-utils/tree/main/project-markers/docs" |
| 59 | +Funding = "https://github.com/sponsors/adamlui" |
| 60 | +Homepage = "https://github.com/adamlui/python-utils/tree/main/project-markers/#readme" |
| 61 | +Issues = "https://github.com/adamlui/python-utils/issues" |
| 62 | +"PyPI Stats" = "https://pepy.tech/projects/project-markers" |
| 63 | +Releases = "https://github.com/adamlui/python-utils/releases" |
| 64 | +Repository = "https://github.com/adamlui/python-utils" |
| 65 | + |
| 66 | +[project.optional-dependencies] |
| 67 | +dev = [ |
| 68 | + "nox>=2026.2.9", |
| 69 | + "tomli>=2.0.0,<3.0.0", |
| 70 | + "tomli-w>=0.1.0,<2.0.0" |
| 71 | +] |
| 72 | + |
| 73 | +[tool.setuptools.packages.find] |
| 74 | +where = ["src"] |
| 75 | + |
| 76 | +[tool.setuptools.package-data] |
| 77 | +"project_markers" = ["project_markers.json"] |
0 commit comments