-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
51 lines (45 loc) · 1.29 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
[build-system]
requires = ["setuptools>=42", "versioneer[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "hedweb"
dynamic = ["version"]
description = "Web interface, REST services, and Docker deployment for HED tools."
readme = "README.md"
authors = [
{ name = "VisLab" },
{ name = "Ian Callanan" },
{ name = "Jeremy Cockfield" },
{ name = "Kay Robbins", email = "[email protected]" }
]
license = { text = "MIT License" }
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
dependencies = [
"Flask",
"Flask-WTF",
"openpyxl",
"pandas",
"Werkzeug",
"requests"
]
[project.urls]
"Homepage" = "https://github.com/hed-standard/hed-web/"
"Bug Tracker" = "https://github.com/hed-standard/hed-web/issues"
[tool.setuptools.packages.find]
namespaces = true
include = ["hed*"]
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "hedweb/_version.py"
versionfile_build = "hedweb/_version.py"
tag_prefix = ""
parentdir_prefix = "hedweb-"
[tool.codespell]
skip = '*.git,*.pdf,*.xml,*.mediawiki,*.svg,versioneer.py,venv*,*.tsv,*.yaml,*.yml,*.json,*.rdf,*.jsonld,spec_tests,*.css,*.css.map'
ignore-words-list = 'te,parms,cACE,assertIn'