-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpyproject.toml
71 lines (60 loc) · 1.88 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
[build-system]
requires = ["setuptools>=42", "wheel", "cython"]
build-backend = "setuptools.build_meta"
[project]
name = "biogeme"
dynamic = ["version"]
description = "Estimation and application of discrete choice models"
readme = { file = "README.md", content-type = "text/markdown" }
authors = [
{ name = "Michel Bierlaire", email = "michel.bierlaire@epfl.ch" }
]
classifiers = [
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: C++",
"Programming Language :: Cython",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython"
]
dependencies = [
"pandas>=2.2.2, <3",
"scipy>=1.14.0, <2",
"tqdm>=4.66.4",
"tomlkit>=0.12.5",
"python-levenshtein>=0.25.1",
"fuzzywuzzy>=0.18.0",
"cythonbiogeme==1.0.4",
"biogeme_optimization==0.0.10",
"matplotlib>=3.9.0, <4",
"numpy>=2.0.0, <3",
"ipython>=8.25.0",
"Jinja2>=3.1.4"
]
[project.optional-dependencies]
testing = [
"pytest >= 7.2.0",
"pytest-cov >= 4.0.0",
"tox >= 3.27.1"
]
[project.urls]
Homepage = "https://biogeme.epfl.ch/sphinx/index.html"
Documentation = "https://biogeme.epfl.ch/sphinx/index.html"
Code = "https://github.com/michelbierlaire/biogeme"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.dynamic]
version = {attr = "biogeme.version.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[tool.setuptools.package-data]
biogeme = ["data/data/*.dat"]
[tool.setuptools.exclude-package-data]
biogeme = ["*/__pycache__", "*/__pycache__/*", "*/*.pyc", "__pycache__", "*.pyc"]