-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
46 lines (42 loc) · 1.41 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
[project]
name = "xlsconv"
dynamic = ["version"]
authors = [
{name = "S. Andrew Sheppard", email = "andrew@wq.io"},
]
description = "Tool to convert ODK-style XLSForms into Django models or use with wq (https://wq.io/)"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Code Generators",
"Framework :: Django",
"Topic :: Text Processing :: Markup :: HTML",
]
dependencies = [
"pyxform",
"astunparse",
"black",
]
[project.scripts]
xls2django = "xlsconv.django:main"
[project.urls]
Homepage = "https://github.com/wq/xlsform-converter"
Documentation = "https://wq.io/"
Source = "https://github.com/wq/xlsform-converter"
"Release Notes" = "https://github.com/wq/xlsform-converter/releases"
Issues = "https://github.com/wq/xlsform-converter/issues"
Tests = "https://github.com/wq/xlsform-converter/actions/workflows/test.yml"
[tool.setuptools_scm]