pyproject.toml 872 B

1234567891011121314151617181920212223242526272829303132333435
  1. [build-system]
  2. requires = ["flit_core >=3.2,<4"]
  3. build-backend = "flit_core.buildapi"
  4. [project]
  5. name = "pytcore"
  6. authors = [
  7. {name = "Randy Paredis", email = "randy.paredis@uantwerpen.be"},
  8. {name = "Arkadiusz Michał Ryś", email = "Arkadiusz.Michal.Rys@gmail.com"},
  9. ]
  10. readme = "README.rst"
  11. requires-python = ">=3.10"
  12. classifiers = [
  13. "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
  14. "Programming Language :: Python :: 3",
  15. "Development Status :: 2 - Pre-Alpha",
  16. "Intended Audience :: Developers",
  17. "Natural Language :: English",
  18. ]
  19. dynamic = ["version", "description"]
  20. license = {file = "LICENSE"}
  21. keywords = ["model", "transformation"]
  22. dependencies = [
  23. "igraph",
  24. ]
  25. [project.optional-dependencies]
  26. test = [
  27. "pytest~=7.2.1",
  28. ]
  29. doc = []
  30. dev = []
  31. [project.urls]
  32. source = "https://msdl.uantwerpen.be/git/rparedis/pyTCore"