-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
56 lines (48 loc) · 1.2 KB
/
pyproject.toml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[project]
name = "pyNEUNET"
version = "0.1.0"
# dynamic = ["version"]
authors = [
{ name="Sean Fayfar", email="[email protected]" },
{ name="Sabine Chu", email="[email protected]"}
]
description = "Software to control hardware at MITR"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"matplotlib",
"scipy",
"lmfit",
"mendeleev"
]
[project.urls]
Homepage = "https://github.com/sfayfar/pyNEUNET-Detector.git"
"Bug Tracker" = "https://github.com/sfayfar/pyNEUNET-Detector/issues"
[build-system]
requires = [
"setuptools>=61.0",
"wheel",
"setuptools_scm[toml]>=6.2",
]
build-backend = "setuptools.build_meta"
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'version = "{version}"'
]
"src/pyNEUNET/__init__.py" = ['__version__ = "{version}"']
"README.md" = ['{version}']
[tool.bumpver]
current_version = "0.1.0"
version_pattern = "MAJOR.MINOR.PATCH[-TAGNUM]"
commit_message = "bump version to {new_version}"
commit = false
tag = false
push = false
# [tool.setuptools_scm]
# write_to = "src/pyNEUNET/_version.py"