-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (50 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
56 lines (50 loc) · 1.47 KB
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
[project]
name = "philote-mdo"
version = "0.8.0"
description = "Python bindings that implement the Philote-MDO standard."
license = {text = "Apache-2.0"}
authors = [{name = "Christopher Lupp"}]
readme = "README.md"
keywords = ["mdo", "optimization", "rpc"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.9"
dependencies = [
"grpcio~=1.66.0",
"protobuf~=5.29.0",
"numpy>=1.19.0",
"scipy>=1.10.0",
]
[project.urls]
Homepage = "https://mdo-standards.github.io/Philote-Python/"
Repository = "https://github.com/mdo-standards/Philote-Python"
Documentation = "https://mdo-standards.github.io/Philote-Python/"
[project.optional-dependencies]
openmdao = ["openmdao>=3.0"]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"black>=23.0",
"flake8>=6.0",
"grpcio-tools~=1.66.0",
"protoletariat>=3.0",
]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["philote_mdo*"]
[tool.setuptools.package-data]
"philote_mdo.generated" = ["*.py", "*.pyi"]
"philote_mdo" = ["proto/*"]