-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (38 loc) · 1.11 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "crosscompute-validation"
version = "1.0.0"
dependencies = [
"aiofiles",
# "crosscompute-macros",
"ruamel.yaml",
]
requires-python = ">= 3.10"
authors = [
{name = "Roy Hyunjin Han", email = "[email protected]"},
]
maintainers = []
description = "Configuration validation for CrossCompute tools"
readme = "README.md"
keywords = []
classifiers = [
"Development Status :: 3 - Alpha",
# Framework :: CrossCompute
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
[project.optional-dependencies]
development = ["pre-commit"]
test = ["pytest-asyncio", "pytest-cov", "pytest-xdist"]
[project.urls]
# Homepage = ""
# Documentation = ""
Repository = "https://github.com/crosscompute/crosscompute-validation"
Issues = "https://github.com/crosscompute/crosscompute-validation/issues"
# Changelog = ""
[tool.hatch.build]
packages = ["sources/crosscompute_validation"]