-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (49 loc) · 1.5 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "study-lyte"
version = "0.9.5"
description = "Analysis software for the Lyte probe, a digital penetrometer for studying snow"
keywords = ["snow penetrometer", "smart probe", "digital penetrometer", 'lyte probe', "avalanches", "snow densiy"]
readme = "README.rst"
requires-python = ">=3.8"
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
]
dependencies = [ "pandas > 2.0.0", "pandas < 3.0.0",
"scipy", "shapely"]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"matplotlib",
"jupyterlab",
"twine"
]
docs = [ "nbsphinx>=0.8.12",
"sphinx-gallery>=0.9.0",
"nbconvert>=7.2.9",
"Sphinx>=5.0.0,<6.0.0",
"pandoc>=1.0.2",
"sphinxcontrib-apidoc>=0.3.0",
"ipython>=7.23.1"
]
all = ["study_lyte[dev,docs]"]
[project.license]
file = "LICENSE"
[project.urls]
Homepage = "https://adventuredata.com/"
Documentation = "https://study-lyte.readthedocs.io"
Repository = "https://github.com/AdventureData/study_lyte"
Issues = "https://github.com/AdventureData/study_lyte/issues"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
include = ["study_lyte*"]
exclude = ["docs*", "tests*"]