-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (66 loc) · 1.52 KB
/
pyproject.toml
File metadata and controls
70 lines (66 loc) · 1.52 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
[project]
name = "pykasso"
version = "1.0.1"
requires-python = ">=3.10"
description = "Python project intended to simulate stochastic karst network"
authors = [
{name = "François Miville", email = "francois.miville@ikmail.com"},
{name = "Chloé Fandel"},
{name = "Philippe Renard"},
]
maintainers = [
{name = "François Miville", email = "francois.miville@ikmail.com"},
]
license = {file = "LICENSE"}
readme = "README.md"
keywords = ['hydrogeology', '3-D modeling', 'stochasticity']
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
]
dependencies = [
'notebook',
'jupyterlab',
'ipykernel',
'ipython',
'ipywidgets',
'nbformat',
'nbclient',
'numpy',
'pandas',
'matplotlib',
'PyQt5',
'pillow',
'Jinja2',
'openpyxl',
'mpmath',
'PyYAML',
'scipy',
'plotly',
'shapely',
'rasterio',
'agd',
'networkx',
'mplstereonet',
'pyvista',
'imageio',
'trame',
'trame-vuetify',
'trame-vtk',
'karstnet',
]
[tool.setuptools.packages.find]
include = ['pykasso', 'pykasso.*']
[tool.setuptools.package-data]
'pykasso._misc' = ['*']
[project.urls]
Homepage = "https://github.com/randlab/pyKasso"
Repository = "https://github.com/randlab/pyKasso"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"