-
Notifications
You must be signed in to change notification settings - Fork 185
/
pyproject.toml
37 lines (33 loc) · 886 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
36
37
[build-system]
requires = [
"setuptools>=61",
]
build-backend = "setuptools.build_meta"
[project]
name = "geostatspy"
dynamic = ["version"]
authors = [
{name = "Michael Pyrcz", email = "mpyrcz@austin.utexas.edu"},
]
description = "Geostatistical methods from GSLIB: Geostatistical Library translated and reimplemented in Python"
readme = "README.md"
keywords = ["geostatistics", "GSLIB"]
license = {text = "MIT"}
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.7"
dependencies = [
]
[project.urls]
Source = "https://github.com/GeostatsGuy/GeostatsPy"
[tool.setuptools.packages.find]
include = [
"geostatspy",
"geostatspy.*",
]
[tool.setuptools.dynamic]
version = {attr = "geostatspy.__version__"}