-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (44 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
53 lines (44 loc) · 1.14 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
[build-system]
requires = ["setuptools>=65.5", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "kde_ebm"
version = "0.0.3"
description = "Event Based Model with Kernel Density Estimation mixture modelling"
readme = "README.md" # if you have one
requires-python = ">=3.6"
license = { text = "MIT" }
authors = [
{ name = "Nicholas C. Firth" },
{ name = "Neil P. Oxtoby" }
]
maintainers = [
{ name = "Neil P. Oxtoby" }
]
dependencies = [
"pybind11",
"scipy>=0.9",
"numpy>=1.6.1",
"matplotlib>=2.0.1",
"tqdm",
"scikit-learn",
"awkde @ git+https://github.com/noxtoby/awkde.git"
]
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering"
]
[project.urls]
Homepage = "https://ucl-pond.github.io/kde_ebm"
# [tool.setuptools]
# packages = ["kde_ebm"]
[tool.setuptools.packages.find]
where = ["."]
### Include synthetic data
[tool.setuptools.package-data]
"kde_ebm.datasets.data" = ["*.csv"]