Changeset 0036877 in flexoentity for pyproject.toml
- Timestamp:
- 10/19/25 09:16:40 (3 months ago)
- Branches:
- master
- Children:
- 59342ce
- Parents:
- d6e75be
- File:
-
- 1 edited
-
pyproject.toml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
pyproject.toml
rd6e75be r0036877 4 4 5 5 [tool.poetry] 6 name = "flexo "6 name = "flexoentity" 7 7 version = "0.0.1" 8 description = "Core entity and ID framework for the Flex-O ecosystem." 8 9 authors = ["Enrico Enno Schwass <ennoausberlin@mac.com>"] 9 description = "Core library providing unique lifecycle-aware IDs and entity base classes"10 license = "MIT" 10 11 readme = "README.md" 11 license = "MIT" 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" 21 ] 22 23 packages = [ 24 { include = "flexoentity" } 25 ] 12 26 13 27 include = [ 14 {path = 'tests/*.py'}, 15 ] 28 { path = "tests/*.py" } 29 ] 16 30 17 31 [tool.poetry.dependencies] 18 python = "^3.10.6" 19 pytest = "^7.1.3" 32 python = "^3.10.6" 33 34 [tool.poetry.group.dev.dependencies] 35 pytest = "^7.1.3" 36 37 [tool.poetry.urls] 38 Homepage = "https://example.com/flexoentity" 39 Repository = "https://example.com/flexoentity.git" 40 Issues = "https://example.com/flexoentity/issues"
Note:
See TracChangeset
for help on using the changeset viewer.
