forked from jonasleitner/adcgen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 701 Bytes
/
pyproject.toml
File metadata and controls
37 lines (31 loc) · 701 Bytes
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
[project]
name = "adcgen"
version = "0.0.5"
description = "Library for deriving ADC equations."
readme = "README.md"
authors = [
{"name" = "Jonas Leitner, Linus Bjarne Dittmer"}
]
license = {"file" = "LICENSE"}
requires-python = ">=3.10"
dependencies = [
"sympy>=1.11"
]
[project.urls]
"Source" = "https://github.com/jonasleitner/adcgen"
[project.optional-dependencies]
test = [
"pytest"
]
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
# include the json config files for the dist
adcgen = ["**/*.json"]
[tool.bumpversion]
current_version = "0.0.5"
commit = true
tag = true