| 1234567891011121314151617181920212223242526272829303132333435 |
- [build-system]
- requires = ["flit_core >=3.2,<4"]
- build-backend = "flit_core.buildapi"
- [project]
- name = "pytcore"
- authors = [
- {name = "Randy Paredis", email = "randy.paredis@uantwerpen.be"},
- {name = "Arkadiusz Michał Ryś", email = "Arkadiusz.Michal.Rys@gmail.com"},
- ]
- readme = "README.rst"
- requires-python = ">=3.10"
- classifiers = [
- "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
- "Programming Language :: Python :: 3",
- "Development Status :: 2 - Pre-Alpha",
- "Intended Audience :: Developers",
- "Natural Language :: English",
- ]
- dynamic = ["version", "description"]
- license = {file = "LICENSE"}
- keywords = ["model", "transformation"]
- dependencies = [
- "igraph",
- ]
- [project.optional-dependencies]
- test = [
- "pytest~=7.2.1",
- ]
- doc = []
- dev = []
- [project.urls]
- source = "https://msdl.uantwerpen.be/git/rparedis/pyTCore"
|