-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (65 loc) · 1.84 KB
/
pyproject.toml
File metadata and controls
73 lines (65 loc) · 1.84 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
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[project]
name = "pppca"
dynamic = ["version"]
description = "PCA for multivariate point processes"
readme = "README.md"
requires-python = ">=3.9"
license = "Apache-2.0"
authors = [
{name = "Kharoh", email = "[email protected]"}
]
keywords = ["point-processes", "pca", "statistics", "functional-data-analysis", "pytorch"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: Apache Software License",
]
dependencies = [
"numpy>=1.20",
"pandas>=1.3",
"torch>=2.0",
"tqdm>=4.60",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"ruff>=0.1",
"mypy>=1.0",
"matplotlib>=3.5", # Useful for running your examples
]
docs = [
"sphinx>=7.0",
"sphinx-rtd-theme>=1.3",
]
[project.urls]
Homepage = "https://github.com/kharoh/pppca"
Repository = "https://github.com/kharoh/pppca"
Issues = "https://github.com/kharoh/pppca/issues"
Docs = "https://kharoh.github.io/pppca/"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
[tool.ruff]
line-length = 88
select = ["E", "F", "I", "N", "W"]
target-version = "py39"
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
ignore_missing_imports = true # Recommended for pandas/torch which can be tricky with mypy
[tool.hatch.version]
path = "hatch/__about__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/pppca"]