-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (48 loc) · 1.89 KB
/
pyproject.toml
File metadata and controls
56 lines (48 loc) · 1.89 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "bocpy"
version = "0.5.0"
authors = [
{name = "bocpy Team", email="bocpy@microsoft.com"}
]
description = "bocpy is a Python extension that adds Behavior-oriented concurrency built on top of cross-interpreter data."
dynamic = ["readme"]
keywords = ["behavior-oriented", "concurrency", "subinterpreters"]
license = "MIT"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
]
[project.urls]
homepage = "https://microsoft.github.io/bocpy/"
source = "https://github.com/microsoft/bocpy"
documentation = "https://microsoft.github.io/bocpy/sphinx/index.html"
issues = "https://github.com/microsoft/bocpy/issues"
[project.optional-dependencies]
test = ["pytest-md", "pytest-emoji", "pytest-cov", "pytest"]
linting = ["flake8", "flake8-bugbear", "flake8-builtins", "flake8-docstrings", "flake8-import-order", "flake8-quotes", "pep8-naming"]
docs = ["sphinx", "sphinx-autodoc-typehints", "enum-tools[sphinx]"]
boids = ["pyglet"]
[project.scripts]
bocpy-bank = "bocpy.examples.bank:main"
bocpy-boids = "bocpy.examples.boids:main"
bocpy-calculator = "bocpy.examples.calculator:main"
bocpy-bench = "bocpy.examples.benchmark:main"
bocpy-cooking-boc = "bocpy.examples.cooking_boc:main"
bocpy-cooking-threads = "bocpy.examples.cooking_threads:main"
bocpy-dining-philosophers = "bocpy.examples.dining_philosophers:main"
bocpy-fibonacci = "bocpy.examples.fibonacci:main"
bocpy-prime-factor = "bocpy.examples.prime_factor:main"
bocpy-primes = "bocpy.examples.primes:main"
bocpy-sketches = "bocpy.examples.sketches:main"
[tool.setuptools]
packages = ["bocpy", "bocpy.examples"]
[tool.setuptools.package-dir]
"" = "src"
"bocpy.examples" = "examples"
[tool.setuptools.package-data]
"bocpy.examples" = ["*.txt"]