-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
123 lines (114 loc) · 2.36 KB
/
pyproject.toml
File metadata and controls
123 lines (114 loc) · 2.36 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "engforge"
version = "0.3.0"
description = "The Engineer's Framework"
readme = "README.md"
license = "MIT"
authors = [
{name = "Kevin Russell", email = "olly@ottermatics.com"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
requires-python = ">=3.9"
dependencies = [
"attrs~=23.2.0",
"arrow",
"deepdiff>=6.3.1",
"numpy==1.24.3",
"scipy",
"matplotlib~=3.8.1",
"jupyter",
"pandas",
"scikit-learn~=1.3.2",
"seaborn",
"tabulate",
"networkx-query==1.0.1",
"networkx>=2.5.1",
"black~=24.8.0",
"randomname~=0.2.1",
"termcolor",
"pyee",
"methodtools~=0.4.7",
"tomli>=1.2.0;python_version<'3.11'"
]
[project.urls]
Homepage = "https://github.com/Ottermatics/engforge"
Repository = "https://github.com/Ottermatics/engforge"
Documentation = "https://ottermatics.github.io/engforge/"
[project.optional-dependencies]
dev = [
"wheel",
"jinja2>=2.11.3",
"sphinx>=3.2.1",
"recommonmark>=0.6.0",
"sphinx-rtd-theme>=1.0.0",
]
eng = [
"control",
"fluids",
"CoolProp",
"sectionproperties~=3.1.2",
"PyniteFEA>=1.2.0"
]
database = [
"SQLAlchemy~=1.3.17",
"SQLAlchemy-Utils",
"psycopg2-binary",
"diskcache>=5.6.1",
"sqlalchemy-batch-inserts",
]
google = [
"expiringdict~=1.2.2",
"pygsheets==2.0.4",
"pydrive2==1.8.1",
]
cloud = [
"boto3",
]
distributed = [
"ray[default]~=2.35.0",
"ray[tune]~=2.35.0",
]
docs = [
"sphinx>=7.0.0",
"sphinx-rtd-theme",
"pydata-sphinx-theme",
"sphinx-autodoc-typehints",
"myst-parser",
"sphinx_autodoc_typehints",
"toml~=0.10.2",
]
all = [
"engforge[database,google,cloud,distributed,docs,eng,dev]",
]
[tool.setuptools]
include-package-data = true
zip-safe = false
[tool.setuptools.packages.find]
include = ["engforge*"]
[tool.black]
line-length = 88
target-version = ["py39", "py310", "py311"]
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''