-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (84 loc) · 2.39 KB
/
pyproject.toml
File metadata and controls
89 lines (84 loc) · 2.39 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[project]
name = "awt"
version = "0.34.0"
dependencies = [
"abiftool>=0.34.0",
"dotenv",
"Flask",
"flask-caching",
"logging",
"PyYAML",
"setuptools",
"typing"
]
description = "awt == 'abif web tool'. It's a web interface for abiftool & abiflib."
readme = "README.md"
requires-python = ">=3.8"
license = {text = "GPL-3.0"}
authors = [
{ name = "Rob Lanphier", email = "robla@robla.net" }
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Sociology :: History"
]
[project.optional-dependencies]
linkpreview = ["cairosvg"]
[project.scripts]
awt = "awt:main"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ["awt", "cache_awt", "conduits", "html_util"]
include-package-data = true
[tool.setuptools.packages.find]
include = ["src"]
[tool.setuptools.data-files]
awt-templates = [
"templates/abifbox-snippet.html",
"templates/all-snippet.html",
"templates/also-note-snippet.html",
"templates/approval-snippet.html",
"templates/base.html",
"templates/browse-index.html",
"templates/default-index.html",
"templates/election-list-snippet.html",
"templates/featured-snippet.html",
"templates/footer.snippet.html",
"templates/fptp-snippet.html",
"templates/homepage-index.html",
"templates/homepage-snippet.html",
"templates/id-index.html",
"templates/intro-snippet.html",
"templates/irv-snippet.html",
"templates/listitem-snippet.html",
"templates/methods-nav-snippit.html",
"templates/notice-snippet.html",
"templates/not-found.html",
"templates/pairwise-snippet.html",
"templates/pairwise-summary-only.html",
"templates/results-index.html",
"templates/scorestar-snippet.html",
"templates/star-snippet.html",
"templates/tag-browser-snippet.html",
"templates/tag-index.html",
"templates/tags-index.html"
]
awt-static = [
"static/css/electostyle.css",
"static/favicon.ico",
"static/img/awt-electorama.svg",
"static/img/awtonly.svg",
"static/img/electodrop.svg",
"static/js/abifwebtool.js",
"static/js/irvDisplay.js",
"static/js/main.js",
"static/js/popover.js"
]
abif-catalog = [
"abif_list.yml"
]