-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (51 loc) · 1.69 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
[project]
name = "NEMO-custom-forms"
version = "0.1.0"
description = "Plugin for NEMO allowing creation, rendering and approval of custom forms for users/staff"
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"
dependencies = [
"django",
"pypdf==5.1.0"
]
license = {file = "LICENSE"}
[project.urls]
Homepage = "https://github.com/usnistgov/NEMO-custom-forms"
Changelog = "https://github.com/usnistgov/NEMO-custom-forms/releases"
Issues = "https://github.com/usnistgov/NEMO-custom-forms/issues"
[project.optional-dependencies]
NEMO-CE = ["NEMO-CE>=6.0.0",]
NEMO = ["NEMO>=6.0.0",]
dev-tools = ["pre-commit", "djlint", "black"]
[tool.setuptools.packages.find]
include = ["NEMO_custom_forms*"]
[tool.setuptools.package-data]
NEMO_custom_forms = ["static/**/*", "templates/**/*"]
[build-system]
requires = ["setuptools>=42", "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"