-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
55 lines (50 loc) · 1.17 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ETo"
dynamic = ["version"]
description = "Class and functions to estimate reference ET"
readme = "README.rst"
license = "Apache"
authors = [
{ name = "Mike Kittridge", email = "[email protected]" },
]
keywords = [
"et",
"reference",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Build Tools",
]
requires-python = ">=3.8"
dependencies = [
"pandas",
]
[tool.hatch.envs.default]
python = "3.10"
dependencies = [
"spyder-kernels==2.4",
"pytest",
"pytest-cov",
]
[project.urls]
Homepage = "https://github.com/mullenkamp/ETo"
[tool.hatch.version]
path = "eto/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/eto",
]
exclude = [
'/eto/tests/utest*',
]