-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (55 loc) · 1.45 KB
/
pyproject.toml
File metadata and controls
65 lines (55 loc) · 1.45 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
54
55
56
57
58
59
60
61
62
63
64
65
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = 'EWB-Hackathon'
version = '0.1'
authors = [
{name = "Felix Rehmann"},
]
description = "EWB-Hackathon. A platform to solve issues in energy and geodate, connect researchers and practitioners, and disseminate knowledge."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: Release to manufacturing (RTM)", # see https://en.wikipedia.org/wiki/Software_release_life_cycle
"License :: MIT",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
]
dependencies = [
]
# root folder of the python/django not found automatically
[tool.setuptools.packages.find]
where = ["."]
#include = ["pkg*"] # alternatively: `exclude = ["additional*"]`
namespaces = false
[project.optional-dependencies]
dev = [
"pylint",
"black",
"sphinx",
"myst-parser",
"deepl",
]
test = [
"coverage[toml] ==7.4", # [toml] not needed using micromanba, maybe also new python version
"xlsxwriter",
]
[tool.pylint]
ignore-patterns = [
"000*",
"manage.py",
"__init__.py",
"test*",
"src/pages/views.py",
]
[tool.pylint.format]
max-line-length = 80
[tool.pylint.basic]
variable-naming-style = "camelCase"
function-naming-style = "camelCase"
method-naming-style = "camelCase"
[tool.black]
line-length = 80