2024-04-30 15:46:56 +00:00
|
|
|
[build-system]
|
2025-01-22 17:48:00 +00:00
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
2024-04-30 15:46:56 +00:00
|
|
|
|
2025-01-22 17:48:00 +00:00
|
|
|
[project]
|
2024-04-30 15:46:56 +00:00
|
|
|
name = "tractor"
|
|
|
|
version = "0.1.0a6dev0"
|
2025-01-22 17:48:00 +00:00
|
|
|
description = 'structured concurrent `trio`-"actors"'
|
|
|
|
authors = [{ name = "Tyler Goodlet", email = "goodboy_foss@protonmail.com" }]
|
|
|
|
requires-python = "~=3.11"
|
2024-04-30 15:46:56 +00:00
|
|
|
readme = "docs/README.rst"
|
2025-01-22 17:48:00 +00:00
|
|
|
license = "AGPL-3.0-or-later"
|
|
|
|
keywords = [
|
|
|
|
"trio",
|
|
|
|
"async",
|
|
|
|
"concurrency",
|
|
|
|
"structured concurrency",
|
|
|
|
"actor model",
|
|
|
|
"distributed",
|
|
|
|
"multiprocessing",
|
|
|
|
]
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 3 - Alpha",
|
|
|
|
"Operating System :: POSIX :: Linux",
|
|
|
|
"Framework :: Trio",
|
|
|
|
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
|
|
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
|
|
"Programming Language :: Python :: 3.11",
|
|
|
|
"Topic :: System :: Distributed Computing",
|
|
|
|
]
|
|
|
|
dependencies = [
|
|
|
|
"trio>=0.24,<0.25",
|
|
|
|
"tricycle>=0.4.1,<0.5",
|
|
|
|
"trio-typing>=0.10.0,<0.11",
|
|
|
|
"wrapt>=1.16.0,<2",
|
|
|
|
"colorlog>=6.8.2,<7",
|
|
|
|
"pdbp>=1.5.0,<2",
|
|
|
|
"msgspec",
|
2024-04-30 15:46:56 +00:00
|
|
|
]
|
|
|
|
|
2025-01-22 17:48:00 +00:00
|
|
|
[dependency-groups]
|
|
|
|
dev = [
|
|
|
|
"pytest>=8.2.0,<9",
|
|
|
|
"pexpect>=4.9.0,<5",
|
|
|
|
"greenback>=1.2.1,<2",
|
|
|
|
"stackscope>=0.2.2,<0.3",
|
|
|
|
"xontrib-vox>=0.0.1,<0.0.2",
|
|
|
|
"prompt-toolkit>=3.0.43,<4",
|
|
|
|
"xonsh-vox-tabcomplete>=0.5,<0.6",
|
|
|
|
]
|
2024-05-28 13:34:08 +00:00
|
|
|
|
2025-01-22 17:48:00 +00:00
|
|
|
[tool.hatch.build.targets.sdist]
|
|
|
|
include = ["tractor"]
|
2024-04-30 15:46:56 +00:00
|
|
|
|
2025-01-22 17:48:00 +00:00
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
include = ["tractor"]
|
2024-04-30 15:46:56 +00:00
|
|
|
|
2022-08-03 14:50:28 +00:00
|
|
|
[tool.towncrier]
|
|
|
|
package = "tractor"
|
|
|
|
filename = "NEWS.rst"
|
|
|
|
directory = "nooz/"
|
2022-10-12 16:36:09 +00:00
|
|
|
version = "0.1.0a6"
|
2022-08-03 15:41:23 +00:00
|
|
|
title_format = "tractor {version} ({project_date})"
|
2022-08-03 14:50:28 +00:00
|
|
|
template = "nooz/_template.rst"
|
|
|
|
all_bullets = true
|
|
|
|
|
2025-01-22 17:48:00 +00:00
|
|
|
[[tool.towncrier.type]]
|
2022-08-03 14:50:28 +00:00
|
|
|
directory = "feature"
|
|
|
|
name = "Features"
|
|
|
|
showcontent = true
|
|
|
|
|
2025-01-22 17:48:00 +00:00
|
|
|
[[tool.towncrier.type]]
|
2022-08-03 14:50:28 +00:00
|
|
|
directory = "bugfix"
|
|
|
|
name = "Bug Fixes"
|
|
|
|
showcontent = true
|
|
|
|
|
2025-01-22 17:48:00 +00:00
|
|
|
[[tool.towncrier.type]]
|
2022-08-03 14:50:28 +00:00
|
|
|
directory = "doc"
|
|
|
|
name = "Improved Documentation"
|
|
|
|
showcontent = true
|
|
|
|
|
2025-01-22 17:48:00 +00:00
|
|
|
[[tool.towncrier.type]]
|
2022-08-03 14:50:28 +00:00
|
|
|
directory = "trivial"
|
|
|
|
name = "Trivial/Internal Changes"
|
|
|
|
showcontent = true
|
2024-03-12 19:48:20 +00:00
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
minversion = '6.0'
|
|
|
|
testpaths = [
|
|
|
|
'tests'
|
|
|
|
]
|
|
|
|
addopts = [
|
|
|
|
# TODO: figure out why this isn't working..
|
|
|
|
'--rootdir=./tests',
|
|
|
|
|
|
|
|
'--import-mode=importlib',
|
|
|
|
# don't show frickin captured logs AGAIN in the report..
|
|
|
|
'--show-capture=no',
|
|
|
|
]
|
|
|
|
log_cli = false
|
|
|
|
|
2025-01-22 17:48:00 +00:00
|
|
|
[tool.uv.sources]
|
|
|
|
msgspec = { git = "https://github.com/jcrist/msgspec.git" }
|