forked from omnetpp/opp_env
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (49 loc) · 1.82 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
49
50
51
52
53
54
55
56
[build-system]
requires = ["setuptools>=61", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "opp_env"
authors = [
{name = "András Varga", email = "[email protected]"},
{name = "Levente Mészáros", email = "[email protected]"},
{name = "Rudolf Hornig", email = "[email protected]"},
]
maintainers = [
{name = "Rudolf Hornig", email = "[email protected]"},
]
description = "A tool, that sets up the development environment for OMNeT++ projects"
keywords = ["omnetpp", "omnest", "simulation", "discrete", "event", "package manager", "model"]
classifiers = [
"Development Status :: 4 - Beta",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Environment :: Console",
"Programming Language :: C++",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Telecommunications Industry",
"Intended Audience :: Education",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Topic :: Education",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Software Distribution",
]
readme = "README.md"
requires-python = ">=3.9"
dependencies = []
dynamic = ["version"]
[project.urls]
Homepage = "https://omnetpp.org"
Documentation = "https://github.com/omnetpp/opp_env/blob/main/README.md"
Changes = "https://github.com/omnetpp/opp_env/blob/main/CHANGES.md"
Repository = "https://github.com/omnetpp/opp_env"
Issues = "https://github.com/omnetpp/opp_env/issues"
Changelog = "https://github.com/omnetpp/opp_env/commits/main"
[project.optional-dependencies]
[project.scripts]
opp_env = "opp_env.opp_env:main"
[tool.setuptools]
packages = ["opp_env"]
[tool.setuptools_scm]
write_to = "opp_env/_version.py"