|
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_julia" |
| 7 | +description = "A Pytask plugin for Julia" |
| 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 | + "pluggy>=1.0.0", |
| 18 | + "pytask>=0.4.5" |
| 19 | +] |
| 20 | +dynamic = ["version"] |
| 21 | + |
| 22 | +[[project.authors]] |
| 23 | +name = "Tobias Raabe" |
| 24 | + |
| 25 | + |
| 26 | +[project.readme] |
| 27 | +file = "README.md" |
| 28 | +content-type = "text/markdown" |
| 29 | + |
| 30 | +[project.license] |
| 31 | +text = "MIT" |
| 32 | + |
| 33 | +[project.urls] |
| 34 | +Homepage = "https://github.com/pytask-dev/pytask-julia" |
| 35 | +Changelog = "https://github.com/pytask-dev/pytask-julia/blob/main/CHANGES.md" |
| 36 | +Documentation = "https://github.com/pytask-dev/pytask-julia" |
| 37 | +Github = "https://github.com/pytask-dev/pytask-julia" |
| 38 | +Tracker = "https://github.com/pytask-dev/pytask-julia/issues" |
| 39 | + |
| 40 | +[tool.setuptools] |
| 41 | +include-package-data = true |
| 42 | +zip-safe = false |
| 43 | +platforms = ["any"] |
| 44 | +license-files = ["LICENSE"] |
| 45 | + |
| 46 | +[tool.check-manifest] |
| 47 | +ignore = ["src/pytask_julia/_version.py"] |
| 48 | + |
| 49 | +[project.entry-points.pytask] |
| 50 | +pytask_julia = "pytask_julia.plugin" |
| 51 | + |
| 52 | +[tool.setuptools.package-dir] |
| 53 | +"" = "src" |
| 54 | + |
| 55 | +[tool.setuptools.packages.find] |
| 56 | +where = ["src"] |
| 57 | +namespaces = false |
| 58 | + |
5 | 59 | [tool.setuptools_scm]
|
6 | 60 | write_to = "src/pytask_julia/_version.py"
|
7 | 61 |
|
|
0 commit comments