-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (60 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
72 lines (60 loc) · 1.67 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "chaski-confluent"
version = "0.1a8"
description = "Chaski Confluent"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "BSD-2-Clause" }
authors = [
{ name = "Yeison Cardona", email = "yencardonaal@unal.edu.co" }
]
maintainers = [
{ name = "Yeison Cardona", email = "yencardonaal@unal.edu.co" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
]
[project.urls]
"Repository" = "https://github.com/dunderlab/python-chaski"
[tool.setuptools.packages.find]
where = ["."]
include = ["chaski"]
[project.optional-dependencies]
dev = [
"colorama",
]
docs = [
"networkx",
"matplotlib",
]
security = [
"cryptography"
]
testing = [
"pytest",
"pytest-asyncio",
"nest-asyncio",
]
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"
[project.scripts]
chaski_certificate_authority = "chaski.scripts.certificate_authority:main"
chaski_remote_proxy = "chaski.scripts.remote_proxy:main"
chaski_streamer_root = "chaski.scripts.streamer_root:main"
chaski_terminate_connections = "chaski.scripts.terminate_connections:main"