-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (41 loc) · 1021 Bytes
/
pyproject.toml
File metadata and controls
49 lines (41 loc) · 1021 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "esnodePy"
version = "0.2.1"
description = "Zero-config Python boundary intelligence"
readme = "README.md"
authors = [{ name="ESNODE", email="info@esnode.co" }]
license = { file = "LICENSE" }
requires-python = ">=3.9"
dependencies = []
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 3",
]
[project.urls]
"Homepage" = "https://github.com/ESNODE/esnodePy"
"Bug Tracker" = "https://github.com/ESNODE/esnodePy/issues"
[project.scripts]
esnodepy = "esnodepy.cli:main"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"black",
"isort",
"mypy",
"jsonschema"
]
[tool.mypy]
python_version = "3.9"
strict = true
ignore_missing_imports = true
[tool.isort]
profile = "black"
[tool.setuptools.packages.find]
include = ["esnodepy*"]
exclude = ["tests*"]