-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 1.05 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "surveyjs"
version = "0.2.10"
description = "Python API for SurveyJS Creator (Form Builder) JSON schema and Form response JSON."
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.8"
authors = [
{name = "Nova Code BV", email = "contact@novaforms.io"}
]
maintainers = [
{name = "Bob Leers"},
{name = "Nova Code BV", email = "contact@novaforms.io"}
]
dependencies = []
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: File Formats :: JSON",
"Topic :: File Formats :: JSON :: JSON Schema"
]
[project.urls]
Homepage = "https://www.novaforms.io"
Repository = "https://github.com/novacode-nl/python-surveyjs"
[tool.setuptools.packages.find]
include = ["surveyjs*"]
[tool.pytest.ini_options]
testpaths = ["tests"]