-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
99 lines (88 loc) · 2.39 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
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
[project]
name = "folie"
readme = "README.md"
description = "Finding Optimal Langevin Inferred Equations."
keywords = [
"langevin-equations", "time-series-analysis"
]
authors = [
{name = 'Hadrien Vroylandt'},
{name = 'David Giradier'},
{name = 'Line Mouaffac'},
{name = 'Léon Huet'},
{name = 'Arthur France-Lanord'},
{name = 'Jérôme Hénin'},
{name = 'Fabio Pietrucci'}
]
requires-python = ">= 3.7"
dependencies = [
'numpy>=1.20',
'scipy>=1.7.0',
'scikit-learn>=1.0',
'numba >= 0.5',
'scikit-fem>= 8.0',
'sparse >=0.14'
]
dynamic = ['version']
classifiers = ["Intended Audience :: Science/Research", "License :: OSI Approved", "Programming Language :: Python", "Topic :: Scientific/Engineering", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Operating System :: Unix", "Operating System :: MacOS"]
[project.urls]
homepage = "https://langevinmodel.github.io"
repository = "https://github.com/langevinmodel/folie"
documentation = "https://langevinmodel.github.io/folie"
download = "https://pypi.org/project/folie/#files"
[project.optional-dependencies]
deep-learning = ['torch']
plotting = ['matplotlib']
units = ['pint>=0.20']
tests = [
'pytest==7.1.2',
'pytest-cov==4.0.0',
"dask>=2022.2.0",
"torch>=1.12.0",
'pytest-benchmark>=4.0.0',
]
docs = [
"sphinx",
"nbsphinx",
"numpydoc",
"sphinxcontrib-bibtex",
"matplotlib",
"sphinxcontrib-katex",
"sphinx-gallery",
"torch",
"memory_profiler",
"mdshare",
"nbconvert",
"jupyter",
"tqdm",
"furo"
]
[build-system]
requires = [
"setuptools>=42",
"wheel",
"scikit-build>=0.16",
"numpy>=1.20",
"tomli; python_version < '3.11'",
"scipy>=1.7",
"versioneer[toml]==0.28"
]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
filterwarnings = ["once", "ignore::UserWarning"]
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "folie/_version.py"
versionfile_build = "folie/_version.py"
tag_prefix = "v"
[tool.flake8]
ignore = ['E24', 'E121', 'E123', 'E126', 'E226', 'E704', 'W503', 'W504']
max-line-length = 120
[tool.coverage.report]
exclude_lines = ["@plotting_function", "pragma: no cover"]
omit = ["*/**/setup.py", "tests/*", "folie/_version.py"]
[tool.coverage.run]
omit = ["*/**/setup.py", "tests/*", "*/**/*.pyx", "folie/_version.py"]
[tool.cibuildwheel]
build-verbosity = 1