-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
58 lines (53 loc) · 1.55 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["setuptools>=64", "versioneer[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "nllgrid"
dynamic = ["version", "readme"]
authors = [
{ name = "Claudio Satriano", email = "[email protected]" },
]
description = "Python class for reading and writing NonLinLoc grid files"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: CEA CNRS Inria Logiciel Libre License, version 2.1 (CeCILL-2.1)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
]
requires-python = ">=3.7"
dependencies = [
"numpy>=1.0",
"scipy>=0.16",
"pyproj",
]
[project.license]
text = "CeCILL Free Software License Agreement, Version 2.1"
[project.urls]
Homepage = "https://github.com/claudiodsf/nllgrid"
[tool.setuptools]
packages = [
"nllgrid",
]
include-package-data = true
platforms = [
"OS",
"Independent",
]
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "nllgrid/_version.py"
versionfile_build = "nllgrid/_version.py"
tag_prefix = "v"
parentdir_prefix = "nllgrid-"