-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (54 loc) · 1.35 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
56
57
58
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "crosscompute-macros"
version = "0.0.1"
dependencies = []
requires-python = ">= 3.10"
authors = [
{name = "Roy Hyunjin Han", email = "[email protected]"},
]
maintainers = []
description = "Reusable classes and functions needed by crosscompute packages"
readme = "README.md"
keywords = []
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
[project.optional-dependencies]
disk = ["aiofiles >= 24.1.0"]
iterable = []
jinja = ["jinja2"]
log = []
markdown = ["markdown2"]
security = ["argon2-cffi"]
sqlalchemy = ["sqlalchemy"]
starlette = ["starlette"]
web = ["aiofiles", "aiohttp"]
development = ["pre-commit"]
test = ["aiofiles", "pytest-asyncio", "pytest-cov", "pytest-xdist"]
all = [
"aiofiles",
"aiohttp",
"argon2-cffi",
"jinja2",
"markdown2",
"pre-commit",
"pytest-asyncio",
"pytest-cov",
"pytest-xdist",
"sqlalchemy",
"starlette",
]
[project.urls]
# Homepage = ""
# Documentation = ""
Repository = "https://github.com/crosscompute/crosscompute-macros"
Issues = "https://github.com/crosscompute/crosscompute-macros/issues"
# Changelog = ""
[tool.hatch.build]
packages = ["sources/crosscompute_macros"]