-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
74 lines (67 loc) · 1.72 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "exponential-adoption-of-battery-electric-cars"
version = "0.1"
authors = [
{ name = "Felix Jung", email = "[email protected]" },
]
maintainers = [
{ name = "Felix Jung", email = "[email protected]" },
]
description = """This contains the code necessary to reproduce the figures in
the article Exponential adoption of battery electric cars by Felix Jung, Malte Schröder
and Marc Timme."""
keywords = ["physics", "science", "data analysis", "battery electric cars"]
readme = "README.md"
requires-python=">=3.10"
classifiers = [
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"jupyterlab",
"jupytext",
"fxutil @ git+https://github.com/fxjung/fxutil",
"uncertainties",
]
[project.optional-dependencies]
dev = [
"black == 23.10.1",
"pytest",
"check-manifest",
]
[project.urls]
repository = "https://github.com/PhysicsOfMobility/exponential-adoption-of-battery-electric-cars"
[tool.setuptools]
zip-safe = false
include-package-data = false
py-modules = []
[tool.setuptools.packages.find]
where = ["notebooks"]
[tool.black]
line-length = 88
target-version = ['py310']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| _deps
| buck-out
| build
| dist
| googletest
)/
'''
# NOTE: you have to use single-quoted strings in TOML for regular expressions.
# It's the equivalent of r-strings in Python. Multiline strings are treated as
# verbose regular expressions by Black. Use [ ] to denote a significant space
# character.