-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
55 lines (49 loc) · 1.41 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["whatsopt"]
[tool.setuptools.dynamic]
version = { attr = "whatsopt.__version__" }
[project]
name = "wop"
dynamic = ["version"]
authors = [{ name = "Rémi Lafage", email = "remi.lafage@onera.fr" }]
description = "WhatsOpt Command Line Interface"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["WhatsOpt", "command"]
license = { text = "Apache License 2.0" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Operating System :: MacOS",
]
dependencies = [
"build",
"click>=6.7",
"openmdao>=3.4.0",
"openmdao_extensions>=1.2.0",
"packaging",
"pkginfo",
"requests",
"tabulate>=0.8.2",
"tomli",
"tomli-w",
"xdsmjs>=1.0.0",
]
[project.optional-dependencies]
test = ["pytest"]
[project.urls]
homepage = "https://github.com/whatsopt"
repository = "https://github.com/whatsopt/WhatsOpt-CLI"
documentation = "https://github.com/whatsopt/WhatsOpt-Doc#whatsopt-documentation"
[project.scripts]
wop = "whatsopt.wop:wop"