|
@@ -0,0 +1,35 @@
|
|
|
|
|
+[build-system]
|
|
|
|
|
+requires = ["flit_core >=3.2,<4"]
|
|
|
|
|
+build-backend = "flit_core.buildapi"
|
|
|
|
|
+
|
|
|
|
|
+[project]
|
|
|
|
|
+name = "tcore"
|
|
|
|
|
+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 :: MIT License",
|
|
|
|
|
+ "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"
|