-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
48 lines (37 loc) · 1.11 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[project]
name = "cimgen"
version = "0.1.0"
description = "Code generation from CIM data model for several programming languages"
readme = "README.md"
keywords = ["cim", "cgmes", "code-generation"]
dependencies = [
"xmltodict >= 0.13.0, < 1",
"chevron >= 0.14.0, < 1",
"pydantic < 2",
"beautifulsoup4 >= 4.12.2, < 5",
"setuptools"
]
requires-python = ">=3.11"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
[project.urls]
Homepage = "https://github.com/sogno-platform/cimgen"
Repository = "https://github.com/sogno-platform/cimgen"
Issues = "https://github.com/sogno-platform/cimgen/issues"
[project.scripts]
cimgen = "cimgen.build:build"
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["cimgen*"]
[tool.black]
line-length = 120