-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 1.11 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
# [build-system]
# requires = ["hatchling"]
# build-backend = "hatchling.build"
[project]
name = "s2Dcd"
version = "1.0.0"
authors = [
{name="Alessandro Comunian", email="alessandro.comunian@gmail.com"}
]
description = "A package to run the sequential 2D (multiple-point statistics) simulation with conditioning data."
readme = "README.md"
# license = { file="LICENSE.txt" }
requires-python = ">=3.7"
# install_requires
dependencies = ["matplotlib", "numpy", "geone"]
# packages = ['s2Dcd', 'deesse', 'utili', 'ext']
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Image Processing"
]
[project.urls]
"Homepage" = "https://github.com/randlab/s2Dcd"
"Bug Tracker" = "https://github.com/pypa/s2Dcd/issues"