Changeset 0036877 in flexoentity for pyproject.toml


Ignore:
Timestamp:
10/19/25 09:16:40 (3 months ago)
Author:
Enrico Schwass <ennoausberlin@…>
Branches:
master
Children:
59342ce
Parents:
d6e75be
Message:

fix pyproject.toml

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pyproject.toml

    rd6e75be r0036877  
    44
    55[tool.poetry]
    6 name = "flexo"
     6name = "flexoentity"
    77version = "0.0.1"
     8description = "Core entity and ID framework for the Flex-O ecosystem."
    89authors = ["Enrico Enno Schwass <ennoausberlin@mac.com>"]
    9 description = "Core library providing unique lifecycle-aware IDs and entity base classes"
     10license = "MIT"
    1011readme = "README.md"
    11 license = "MIT"
     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]
    1226
    1327include = [
    14         {path = 'tests/*.py'},
    15 ] 
     28    { path = "tests/*.py" }
     29]
    1630
    1731[tool.poetry.dependencies]
    18 python  = "^3.10.6"
    19 pytest  = "^7.1.3"
     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 TracChangeset for help on using the changeset viewer.