source: flexoentity/pyproject.toml@ dfce52b

Last change on this file since dfce52b 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]
2requires = ["poetry-core>=1.0.7"]
3build-backend = "poetry.core.masonry.api"
4
5[tool.poetry]
6name = "flexoentity"
7version = "0.0.1"
8description = "Core entity and ID framework for the Flex-O ecosystem."
9authors = ["Enrico Enno Schwass <ennoausberlin@mac.com>"]
10license = "MIT"
11readme = "README.md"
12homepage = "https://example.com/flexoentity"
13repository = "https://example.com/flexoentity.git"
14documentation = "https://example.com/flexoentity/docs"
15keywords = ["flex-o", "entity", "id", "versioning", "hashing", "reproducibility"]
16classifiers = [
17 "Development Status :: 5 - Production/Stable",
18 "Programming Language :: Python :: 3",
19 "License :: OSI Approved :: MIT License",
20 "Operating System :: OS Independent"
21]
22
23packages = [
24 { include = "flexoentity" }
25]
26
27include = [
28 { path = "tests/*.py" }
29]
30
31[tool.poetry.dependencies]
32python = "^3.10.6"
33
34[tool.poetry.group.dev.dependencies]
35pytest = "^7.1.3"
36
37[tool.poetry.urls]
38Homepage = "https://example.com/flexoentity"
39Repository = "https://example.com/flexoentity.git"
40Issues = "https://example.com/flexoentity/issues"
Note: See TracBrowser for help on using the repository browser.