-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpyproject.toml
47 lines (41 loc) · 1.19 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
47
[build-system]
requires = ["setuptools>=63.1.0"]
build-backend = "setuptools.build_meta"
[project]
name = "sbol3"
version = "1.2"
description = "Python implementation of SBOL 3 standard"
readme = "README.md"
authors = [{name = "Tom Mitchell"}, {email = "tcmitchell@users.noreply.github.com"}]
license = {text = "MIT License"}
requires-python = ">=3.8"
keywords = ["synthetic biology"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"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",
]
dependencies = [
"rdflib>=6.1.1,<7",
"python-dateutil~=2.9",
"pyshacl~=0.25"
]
[project.urls]
homepage = "https://github.com/SynBioDex/pySBOL3"
[project.optional-dependencies]
test = [
"pycodestyle~=2.11",
"pylint~=3.0"
]
[tool.setuptools]
packages = ["sbol3", "sbol3.rdf"]
[tool.pytest.ini_options]
testpath = ["test"]
# [tool.setuptools.package-data]
# sbol3 = ["*.ttl"]