-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (54 loc) · 1.62 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (54 loc) · 1.62 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [ "setuptools>=80.1" ]
[project]
name = "sbol2"
description = "Pure Python implementation of SBOL 2 standard"
readme = "README.md"
keywords = [
"biology",
"synthetic biology",
]
license = "Apache-2.0"
authors = [
{ name = "Bryan Bartley", email = "editors@sbolstandard.org" },
]
requires-python = ">=3.11"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dynamic = [ "version" ]
dependencies = [
"deprecated",
"lxml",
# As of August 2026 the code is incompatible with packaging >= 26.1
# https://github.com/SynBioDex/pySBOL2/issues/450
"packaging<26.1",
"python-dateutil",
"rdflib>=5",
"requests",
"urllib3",
]
urls.changelog = "https://github.com/SynBioDex/pySBOL2/blob/master/CHANGELOG.md"
urls.documentation = "https://pysbol.readthedocs.io/"
urls.homepage = "https://github.com/SynBioDex/pySBOL2"
urls.issues = "https://github.com/SynBioDex/pySBOL2/issues"
urls.source = "https://github.com/SynBioDex/pySBOL2.git"
[dependency-groups]
# Install with pip: "python3 -m pip install --group dev"
# Install with uv: "uv sync --all-groups" or "uv sync --group dev"
dev = [
"pycodestyle>=2.14",
"ruff>=0.16.1",
]
[tool.setuptools]
packages = [ "sbol2" ]
# Include libSBOLj.jar in the distribution
package-data.sbol2 = [ "libSBOLj.jar" ]
dynamic.version = { attr = "sbol2.__version__" }