-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 1.23 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
[tool.poetry]
name = "testsuite"
version = "0.1.5"
description = "Example BuildingSync files and tools for writing and validating BuildingSync use cases as schematron files."
authors = ["Ted Summer <ted@devetry.com>", "Nicholas Long <nllong>"]
license = "BSD4"
readme = "README.md"
homepage = "https://buildingsync.net"
repository = "https://github.com/BuildingSync/TestSuite"
documentation = "https://github.com/BuildingSync/TestSuite"
keywords = ["BuildingSync", "Building Data Exchange", "Schematron"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[tool.poetry.dependencies]
python = "^3.9"
# This is the version in BAE, so let's pin to that version
lxml = "^5.3.0"
[tool.poetry.group.dev.dependencies]
pytest = "8.4.2"
pytest-cov = "7.0.0"
pre-commit = "^4.2.0"
[tool.poetry.scripts]
testsuite = 'testsuite.console:main'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"