-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
126 lines (112 loc) · 3.08 KB
/
pyproject.toml
File metadata and controls
126 lines (112 loc) · 3.08 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
124
125
126
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "geos-trame"
version = "1.0.0"
description = "Geos Simulation Modeler"
authors = [{name = "GEOS Contributors" }]
maintainers = [{name = "Alexandre Benedicto", email = "alexandre.benedicto@external.totalenergies.com" },
{name = "Paloma Martinez", email = "paloma.martinez@external.totalenergies.com" },
{name = "Jacques Franc", email= "jacques.franc@external.totalenergies.com" }]
license = {text = "Apache-2.0"}
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: JavaScript",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = [
"Python",
"Interactive",
"Web",
"Application",
"Framework",
]
dependencies = [
"trame==3.6.5",
"trame-vuetify==3.1.0",
"trame-code==1.0.1",
"trame-server==3.2.3",
"trame-client==3.11.2",
"trame-simput==2.4.3",
"trame-vtk==2.10.0",
"matplotlib==3.9.4",
"trame-matplotlib==2.0.3",
"trame-components==2.4.2",
"python-dotenv>=1.2.1",
"mpld3<0.5.11",
"paramiko==4.0.0",
"xsdata==24.5",
"xsdata-pydantic[lxml]==24.5",
"pyvista==0.45.2",
"dpath==2.2.0",
"colorcet==3.1.0",
"funcy==2.0",
"pytz==2025.2",
"typing_inspect==0.9.0",
"typing_extensions>=4.15.0",
"PyYAML",
]
[project.optional-dependencies]
build = [
"build >= 1.2"
]
dev = [
"pylint",
"mypy",
"types-PyYAML",
"ruff",
"pre-commit"
]
test = [
"pytest==8.3.3",
"pytest-seleniumbase==4.31.6",
"pixelmatch==0.3.0",
"Pillow==11.0.0",
"pytest-mypy==0.10.3",
"pytest-xprocess==1.0.2"
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.scripts]
geos-trame = "geos.trame.app.main:main"
[project.entry-points.jupyter_serverproxy_servers]
geos-trame = "geos.trame.app.jupyter:jupyter_proxy_info"
[tool.setuptools]
license-files = ["LICENSE"]
include-package-data = true
# [tool.setuptools.packages.find]
# include = ['geos-trame*']
[tool.setuptools.package-data]
"*" = ["*.js", "*.css","assets/*","*.jinja","*.json",".env"]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
#addopts = "--cov --cov-report html --cov-report term-missing --cov-fail-under 95"
]
pythonpath = "src/"
[tool.coverage.run]
source = ["src"]
[tool.bumpversion]
current_version = "1.0.0"
[[tool.bumpversion.files]]
filename = "pyproject.toml"
search = 'version = "{current_version}"'
replace = 'version = "{new_version}"'
[tool.pylint]
max-line-length = 88
disable = [
"C0103", # (invalid-name)
"C0114", # (missing-module-docstring)
"C0115", # (missing-class-docstring)
"C0116", # (missing-function-docstring)
"R0903", # (too-few-public-methods)
"R0913", # (too-many-arguments)
"W0105", # (pointless-string-statement)
]