-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathpyproject.toml
72 lines (64 loc) · 2.06 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
[project]
name = "NEMO"
version = "7.0.2"
description = "NEMO is a laboratory logistics web application. Use it to schedule reservations, control tool access, track maintenance issues, and more."
keywords = ["NEMO"]
readme = "README.md"
authors = [{name = "Center for Nanoscale Science and Technology", email = "CNSTapplications@nist.gov"}]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"License :: Public Domain",
"Natural Language :: English",
"Operating System :: OS Independent",
"Framework :: Django :: 4.2",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.9, <4"
dependencies = [
"cryptography==44.0.1",
"Django==4.2.19",
"django-auditlog==3.0.0",
"django-filter==25.1",
"djangorestframework==3.15.2",
"drf-excel==2.5.2",
"drf-flex-fields==1.0.2",
"ldap3==2.9.1",
"Pillow==11.1.0",
"python-dateutil==2.9.0",
"requests==2.32.3",
"packaging==24.2",
"django-mptt==0.14.0",
"pymodbus==3.8.6",
]
license = {file = "LICENSE"}
[project.urls]
Homepage = "https://github.com/usnistgov/NEMO"
Changelog = "https://github.com/usnistgov/NEMO/releases"
Issues = "https://github.com/usnistgov/NEMO/issues"
[project.optional-dependencies]
dev-tools = ["pre-commit", "djlint", "black"]
[project.scripts]
nemo = "NEMO.provisioning:entry_point"
[tool.setuptools.packages.find]
include = ["NEMO*"]
exclude = ["resources", "resources.*", "build", "build.*"]
[tool.setuptools.package-data]
"NEMO" = ["**/templates/**/*", "**/static/**/*"]
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 120
target-version = ['py311']
[tool.djlint]
profile = "django"
max_attribute_length=100
max_line_length=120
ignore = "H031"