-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
51 lines (46 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
48
49
50
51
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "nats-tools"
authors = [
{ name = "Guillaume Charbonnier", email = "[email protected]" },
]
description = "Useful tools to develop Python projects relying on NATS"
readme = "README.md"
requires-python = ">=3.8,<4.0"
license = { text = "Apache-2.0" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
]
dynamic = ["version"]
dependencies = ["httpx", "jinja2"]
[project.optional-dependencies]
build = ["build", "invoke", "pip-tools"]
dev = [
"black",
"isort",
"invoke",
"flake8",
"mypy",
"pytest",
"pytest-asyncio",
"pytest-cov",
"types-setuptools",
]
docs = [
"mkdocs-gen-files",
"mkdocs-literate-nav",
"mkdocs-material",
"mkdocs-section-index",
"mkdocstrings[python]",
"pymdown-extensions",
]
[project.urls]
Repository = "https://github.com/quara-dev/nats-tools"
Issues = "https://github.com/quara-dev/nats-tools/issues"
[project.entry-points."pytest11"]
nats = "nats_tools.testing"
[tool.setuptools.dynamic]
version = { attr = "nats_tools.__about__.__version__" }