-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
35 lines (32 loc) · 1020 Bytes
/
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
[project]
name = "pykasso"
version = "1.0.0"
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 :: 3 - Alpha",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
]
[tool.setuptools]
packages = ["pykasso"]
[project.urls]
Homepage = "https://github.com/randlab/pyKasso"
Repository = "https://github.com/randlab/pyKasso"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"