|
2 | 2 | requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.0"] |
3 | 3 | build-backend = "setuptools.build_meta" |
4 | 4 |
|
| 5 | +[project] |
| 6 | +name = "pytask_parallel" |
| 7 | +description = "Parallelize the execution of tasks with pytask." |
| 8 | +classifiers = [ |
| 9 | + "Development Status :: 4 - Beta", |
| 10 | + "License :: OSI Approved :: MIT License", |
| 11 | + "Operating System :: OS Independent", |
| 12 | + "Programming Language :: Python :: 3", |
| 13 | + "Programming Language :: Python :: 3 :: Only" |
| 14 | +] |
| 15 | +requires-python = ">=3.8" |
| 16 | +dependencies = [ |
| 17 | + "attrs>=21.3.0", |
| 18 | + "click", |
| 19 | + "cloudpickle", |
| 20 | + "loky", |
| 21 | + "pluggy>=1.0.0", |
| 22 | + "pytask>=0.4.0", |
| 23 | + "rich" |
| 24 | +] |
| 25 | +dynamic = ["version"] |
| 26 | + |
| 27 | +[[project.authors]] |
| 28 | +name = "Tobias Raabe" |
| 29 | +email = "raabe@posteo.de" |
| 30 | + |
| 31 | +[project.readme] |
| 32 | +file = "README.md" |
| 33 | +content-type = "text/markdown" |
| 34 | + |
| 35 | +[project.license] |
| 36 | +text = "MIT" |
| 37 | + |
| 38 | +[project.urls] |
| 39 | +Homepage = "https://github.com/pytask-dev/pytask-parallel" |
| 40 | +Changelog = "https://github.com/pytask-dev/pytask-parallel/blob/main/CHANGES.md" |
| 41 | +Documentation = "https://github.com/pytask-dev/pytask-parallel" |
| 42 | +Github = "https://github.com/pytask-dev/pytask-parallel" |
| 43 | +Tracker = "https://github.com/pytask-dev/pytask-parallel/issues" |
| 44 | + |
| 45 | +[tool.setuptools] |
| 46 | +include-package-data = true |
| 47 | +zip-safe = false |
| 48 | +platforms = [ "any",] |
| 49 | +license-files = [ "LICENSE",] |
| 50 | + |
| 51 | +[tool.check-manifest] |
| 52 | +ignore = ["src/pytask_parallel/_version.py"] |
| 53 | + |
| 54 | +[project.entry-points.pytask] |
| 55 | +pytask_parallel = "pytask_parallel.plugin" |
| 56 | + |
| 57 | +[tool.setuptools.package-dir] |
| 58 | +"" = "src" |
| 59 | + |
| 60 | +[tool.setuptools.packages.find] |
| 61 | +where = ["src"] |
| 62 | +namespaces = false |
5 | 63 |
|
6 | 64 | [tool.setuptools_scm] |
7 | 65 | write_to = "src/pytask_parallel/_version.py" |
8 | 66 |
|
9 | | - |
10 | 67 | [tool.mypy] |
11 | 68 | files = ["src", "tests"] |
12 | 69 | check_untyped_defs = true |
|
0 commit comments