-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathpyproject.toml
61 lines (54 loc) · 1.44 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
[build-system]
requires = ["setuptools >= 40.8", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "particles"
description = "Sequential Monte Carlo in Python"
readme = "README.md"
version = "0.4"
requires-python = ">= 3.9"
authors = [
{ name = "Nicolas Chopin", email = "[email protected]" },
]
dependencies = [
"joblib",
"numba",
"numpy >= 1.18, < 2",
"scipy >= 1.7",
"scikit-learn"
]
classifiers = [
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Mathematics",
]
[project.license]
text = "MIT License"
files = ["LICENSE"]
[project.urls]
repository = "https://github.com/nchopin/particles"
documentation = "https://particles-sequential-monte-carlo-in-python.readthedocs.io/en/latest/"
[project.optional-dependencies]
extra = [
"pandas",
"statsmodels",
"ipython",
"seaborn",
"matplotlib",
]
docs = [
"ipython",
"sphinx == 7.0.1",
"nbsphinx == 0.9.2"
]
[tool.setuptools.packages.find]
# scanning for namespace packages is true by default in pyproject.toml, so
# you do NOT need to include the following line.
namespaces = true
[tool.setuptools.package-data]
"particles.datasets" = ["*.csv", "*.txt", "*.data", "*.all-data"]