Changeset ef5aac4 in flexoentity
- Timestamp:
- 01/06/26 07:56:46 (9 days ago)
- Branches:
- master
- Children:
- a8dca95
- Parents:
- 3d598d5
- File:
-
- 1 edited
-
pyproject.toml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
pyproject.toml
r3d598d5 ref5aac4 1 1 [build-system] 2 requires = [" poetry-core>=1.0.7"]3 build-backend = " poetry.core.masonry.api"2 requires = ["hatchling"] 3 build-backend = "hatchling.build" 4 4 5 [tool.poetry] 5 6 [project] 6 7 name = "flexoentity" 7 8 version = "0.0.1" 8 9 description = "Core entity and ID framework for the Flex-O ecosystem." 9 authors = ["Enrico Enno Schwass <ennoausberlin@mac.com>"]10 license = "MIT"11 10 readme = "README.md" 12 homepage = "https://example.com/flexoentity" 13 repository = "https://example.com/flexoentity.git" 14 documentation = "https://example.com/flexoentity/docs" 15 keywords = ["flex-o", "entity", "id", "versioning", "hashing", "reproducibility"] 16 classifiers = [ 17 "Development Status :: 5 - Production/Stable", 18 "Programming Language :: Python :: 3", 19 "License :: OSI Approved :: MIT License", 20 "Operating System :: OS Independent" 11 license = { text = "MIT" } 12 13 authors = [ 14 { name = "Enrico Enno Schwass", email = "ennoausberlin@mac.com" } 21 15 ] 22 16 23 packages = [ 24 { include = "flexoentity" } 17 requires-python = ">=3.10.6" 18 19 keywords = [ 20 "flex-o", 21 "entity", 22 "id", 23 "versioning", 24 "hashing", 25 "reproducibility" 25 26 ] 26 27 27 include = [ 28 { path = "tests/*.py" } 28 classifiers = [ 29 "Development Status :: 5 - Production/Stable", 30 "Programming Language :: Python :: 3", 31 "License :: OSI Approved :: MIT License", 32 "Operating System :: OS Independent" 29 33 ] 30 34 31 [tool.poetry.dependencies] 32 python = "^3.10.6" 35 # Runtime dependencies 36 dependencies = [] 33 37 34 [tool.poetry.group.dev.dependencies]35 pytest = "^7.1.3"36 38 37 [tool.poetry.urls] 39 [project.optional-dependencies] 40 dev = [ 41 "pytest>=7.1.3" 42 ] 43 44 45 [project.urls] 38 46 Homepage = "https://gitlab.kokyou.de/enno/flexoentity" 39 47 Repository = "https://gitlab.kokyou.de/enno/flexoentity.git" 48 Documentation = "https://gitlab.kokyou.de/enno/flexoentity/docs" 49 50 51 # ───────────── Hatchling configuration ───────────── 52 53 [tool.hatch.build.targets.wheel] 54 packages = ["flexoentity"] 55 56 57 [tool.hatch.build.targets.sdist] 58 include = [ 59 "flexoentity/**", 60 "tests/**", 61 "README.md", 62 "pyproject.toml" 63 ]
Note:
See TracChangeset
for help on using the changeset viewer.
