-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 1.07 KB
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 = ["setuptools>=42"]
build-backend = "setuptools.build_meta"
[project]
name = "quantum-infra-zero"
version = "0.1.0"
description = "Quantum Infrastructure Zero: A serverless, DNS-less network infrastructure"
authors = [
{name = "Dmitry Sorokin", email = "d.sorokin@rechain.network"}
]
license = {text = "Apache-2.0"}
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Topic :: System :: Distributed Computing",
"Topic :: System :: Networking"
]
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"pytest-asyncio>=0.15.0",
"black>=21.5b2",
"isort>=5.8.0",
"mypy>=0.812",
"flake8>=3.9.0"
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
python_files = ["test_*.py"]
[project.scripts]
quantum-node = "quantum_infra_zero.cli:main"