forked from bede/primaschema
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
56 lines (50 loc) · 1.22 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
48
49
50
51
52
53
54
55
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "primaschema"
authors = [
{name = "Bede Constantinides", email="[email protected]"},
{name = "Peter van Heusden", email="[email protected]"}
]
dynamic = ["version", "description"]
readme = "README.md"
requires-python = ">=3.8"
keywords = ["genomics"]
license = {text = "MIT License"}
classifiers = [
"Framework :: Django",
"Programming Language :: Python :: 3.12",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
]
dependencies = [
"altair>=5.3.0",
"biopython>=1.80",
"defopt==6.4.0",
"httpx>=0.27.0",
"jsonschema",
"linkml",
"natsort>=8.4.0",
"pandas>=1.5.3",
"platformdirs>=4.2.2",
"pydantic>=2.0.0",
"pyyaml>=6.0.2",
"vl-convert-python>=1.6.0"
]
[project.scripts]
primaschema = "primaschema.cli:main"
[project.urls]
Home = "https://github.com/pha4ge/primaschema"
[project.optional-dependencies]
dev = [
"pytest",
"pre-commit",
"flit"
]
[tool.flit.external-data]
directory = "test"