forked from Beuchey/OCL_Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
29 lines (27 loc) · 934 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[build-system]
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"
[project]
name = "pyecoreocl"
version = "0.0.1"
description = "Object Constraint Language (OCL) to Python Compiler"
readme = "README.md"
license = {file = "LICENSE"}
authors = [{name = "Vincent Aranega", email = "[email protected]"}]
urls = { "Bug Tracker" = "https://github.com/aranega/pyecoreocl", "Homepage" = "https://github.com/aranega/pyecoreocl" }
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Operating System :: OS Independent"
]
dependencies = [
"antlr4-python3-runtime==4.13.2",
"magic_codec"
]
[tool.setuptools.package-dir]
pyecoreocl = "./pyecoreocl"
magic_ocl = "./magic_ocl"