Skip to content

Commit

Permalink
Adding a pyproject.toml file. RE:#95
Browse files Browse the repository at this point in the history
  • Loading branch information
phargogh committed Oct 27, 2023
1 parent f55bfcd commit 708ec79
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
[project]
name = "taskgraph"
description = "Parallel task graph framework"
readme = "README.rst"
requires-python = ">=3.6"
license = {file = "LICENSE.txt"}
maintainers = [
{name = "Natural Capital Project Software Team"}
]
keywords = "parallel multiprocessing distributed computing"
classifiers = [
"Intended Audience :: Developers",
"Topic :: System :: Distributed Computing",
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: BSD License"
]
# the version is provided dynamically by setuptools_scm
# `dependencies` and `optional-dependencies` are provided by setuptools
# using the corresponding setup args `install_requires` and `extras_require`
dynamic = ["version", "dependencies", "optional-dependencies"]

[build-system]
requires = [
'wheel', 'setuptools_scm>=8.0'
]
build-backend = "setuptools.build_meta"

[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "node-and-date"

0 comments on commit 708ec79

Please sign in to comment.