-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpyproject.toml
More file actions
102 lines (94 loc) · 2.08 KB
/
pyproject.toml
File metadata and controls
102 lines (94 loc) · 2.08 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[build-system]
requires = [
"setuptools>=64",
"wheel",
"setuptools_scm[toml]>=8",
"setuptools_scm_git_archive",
]
build-backend = "setuptools.build_meta"
[project]
name = "python-sensors"
description = "Sparse Sensor Placement"
authors = [
{name="Brian de Silva", email="bdesilva@uw.edu"},
{name="Niharika Karnik", email="niharika.karnik29@gmail.com"},
{name="Yash Bhangale", email="yash6599@uw.edu"},
{name="Mohammad Abdo", email="mohammad.abdo@inl.gov"},
{name="Krithika Manohar", email="kmanohar@uw.edu"},
{name="Emily Clark", email="emily.e.clark93@gmail.com"},
]
license = {text = "MIT"}
requires-python = ">=3.10"
dynamic = ["version"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Mathematics",
]
readme = "README.rst"
dependencies = [
"scikit-learn",
"numpy>=2.0",
"matplotlib>=3.10",
"pandas",
"scipy"
]
[project.urls]
Homepage = "https://github.com/dynamicslab/pysensors"
Repository = "https://github.com/dynamicslab/pysensors"
[project.optional-dependencies]
dev = [
"pytest >=6.2.4, <8.0.0",
"pytest-cov",
"pytest-lazy-fixture",
"flake8-builtins-unleashed",
"codecov",
"sphinx >= 2",
"sphinxcontrib-apidoc",
"sphinx_rtd_theme",
"pre-commit",
"nbsphinx",
]
examples = [
"jupyter",
"matplotlib",
"netCDF4",
"notebook",
"seaborn",
]
[tool.black]
line-length = 88
exclude = '''
/(
\.git
| \.mypy_cache
| \.venv
| build
| dist
)/
'''
[tool.pytest.ini_options]
filterwarnings = [
"ignore::RuntimeWarning",
"ignore::UserWarning"
]
[tool.setuptools]
packages = { find = { exclude = ["tests", "examples"] } }
[tool.setuptools_scm]
write_to = "pysensors/version.py"
[tool.flake8]
exclude = [
".git",
".venv",
"dist",
"build",
"docs",
"examples",
"__pycache__",
]