Skip to content

Commit 0e7466e

Browse files
committed
Initialize pyproject.toml with project details
Add pyproject.toml for project configuration Signed-off-by: Romeo Kienzler <romeo.kienzler1@ibm.com>
1 parent 4107054 commit 0e7466e

1 file changed

Lines changed: 42 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
[build-system]
2+
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[tool.setuptools_scm]
6+
version_file = "src/_version.py"
7+
8+
[project]
9+
name="component-library"
10+
dynamic = ["version"]
11+
authors = [
12+
{ name="The CLAIMED authors", email="claimed-framework@proton.me"},
13+
]
14+
maintainers = [
15+
{ name="Romeo Kienzler", email="claimed-framework@proton.me"},
16+
{ name="Benedikt Blumenstiel"},
17+
]
18+
description = "Library for using CLAIMED operators in code"
19+
readme = "README.md"
20+
requires-python=">=3.9"
21+
license = {file = "LICENSE.txt"}
22+
keywords = ["CLAIMED", "component-library"]
23+
classifiers = [
24+
"Programming Language :: Python :: 3",
25+
"License :: OSI Approved :: Apache Software License",
26+
"Operating System :: OS Independent",
27+
]
28+
29+
dependencies = [
30+
"aiobotocore",
31+
"botocore",
32+
"s3fs",
33+
"claimed-c3",
34+
]
35+
36+
[tool.setuptools.packages.find]
37+
include = ["component-library*"]
38+
39+
[project.urls]
40+
"Homepage" = "https://github.com/claimed-framework/component-library"
41+
"Bug Tracker" = "https://github.com/claimed-framework/component-library/issues"
42+

0 commit comments

Comments
 (0)