|
Last change
on this file since 0036877 was 0036877, checked in by Enrico Schwass <ennoausberlin@…>, 3 months ago |
|
fix pyproject.toml
|
-
Property mode
set to
100644
|
|
File size:
1.1 KB
|
| Line | |
|---|
| 1 | [build-system]
|
|---|
| 2 | requires = ["poetry-core>=1.0.7"]
|
|---|
| 3 | build-backend = "poetry.core.masonry.api"
|
|---|
| 4 |
|
|---|
| 5 | [tool.poetry]
|
|---|
| 6 | name = "flexoentity"
|
|---|
| 7 | version = "0.0.1"
|
|---|
| 8 | description = "Core entity and ID framework for the Flex-O ecosystem."
|
|---|
| 9 | authors = ["Enrico Enno Schwass <ennoausberlin@mac.com>"]
|
|---|
| 10 | license = "MIT"
|
|---|
| 11 | 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"
|
|---|
| 21 | ]
|
|---|
| 22 |
|
|---|
| 23 | packages = [
|
|---|
| 24 | { include = "flexoentity" }
|
|---|
| 25 | ]
|
|---|
| 26 |
|
|---|
| 27 | include = [
|
|---|
| 28 | { path = "tests/*.py" }
|
|---|
| 29 | ]
|
|---|
| 30 |
|
|---|
| 31 | [tool.poetry.dependencies]
|
|---|
| 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
TracBrowser
for help on using the repository browser.