-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (57 loc) · 1.6 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
[build-system]
requires = ["hatchling>=1.9.0", "hatch-vcs", "toml"]
build-backend = "hatchling.build"
[project]
name = "fullcoster"
dynamic = [
"version",
]
description = "Project allowing saving use of lab experiments for a full cost"
readme = "README.rst"
license = { file="LICENSE" }
requires-python = ">=3.11"
authors = [
{ name = "Sébastien Weber", email = "sebastien.weber@cemes.fr" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Other Environment",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: User Interfaces",
]
dependencies = [
'numpy',
'django',
'psycopg2',
'python-ldap',
'django-auth-ldap',
'django-tables2',
'django-filter',
'django-bootstrap4',
'django-crispy-forms',
'django-simple-history',
'django-post_office',
'openpyxl',
'tablib',
'portion',
]
[project.scripts]
[project.urls]
Homepage = "https://full-cost.cemes.fr"
Source = ""
Tracker = ""
[tool.hatch.version]
source = "vcs"
fallback-version = '2.0.0'
[tool.hatch.build.targets.wheel]
packages = ["src/fullcoster"]