forked from equinor/resfo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (42 loc) · 1.18 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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "ecl-data-io"
description="A (lazy) parser and writer for the ecl output format."
readme = "README.md"
classifiers=[
"Development Status :: 1 - Planning",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
dependencies = ["numpy"]
dynamic=["version"]
authors = [
{name="Equinor", email="fg_sib-scout@equinor.com"},
]
maintainers = [
{name="Eivind Jahren", email="ejah@equinor.com"},
]
[project.license]
text = "LGPL-3.0"
[project.urls]
"Homepage" = "https://github.com/equinor/ecl-data-io"
"Repository" = "https://github.com/equinor/ecl-data-io"
"Documentation" = "https://ecl-data-io.readthedocs.io/en/stable/"
"Bug Tracker" = "https://github.com/equinor/ecl-data-io/issues"
[project.optional-dependencies]
doc = [
"sphinx",
"sphinx-rtd-theme",
]
dev = [
"pytest",
"hypothesis",
"tox",
"pre-commit"
]
[tool.setuptools_scm]