forked from RyTheGuy355/MiniAFSDCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (70 loc) · 2.04 KB
/
pyproject.toml
File metadata and controls
77 lines (70 loc) · 2.04 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[build-system]
# hatchling v1.27 was first version to use default metadata version 2.4, allowing project.license
# and project.license-files fields following PEP-639
requires = ["hatchling>=1.27"]
build-backend = "hatchling.build"
[project]
name = "mini_afsd"
version = "1.3.0"
authors = [
{name = "Ryan Gottwald"},
{name = "Donald Erb", email = "derb15@vt.edu"},
]
maintainers = [
{name = "Donald Erb", email = "derb15@vt.edu"},
]
description = "A program for controlling a miniaturized additive friction stir deposition (AFSD) machine."
readme = "README.rst"
license-files = [
"LICENSE.txt"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Physics",
]
keywords = [
"AFSD",
"additive friction stir deposition",
"engineering",
"additive manufacturing",
]
requires-python = ">=3.7"
dependencies = [
"labjack-ljm",
"numpy",
"matplotlib>=3.4",
"pyserial",
]
[project.urls]
Homepage = "https://github.com/RyTheGuy355/MiniAFSDCode"
[project.optional-dependencies]
release = [
"build",
"bump-my-version",
"twine",
]
[tool.bumpversion]
current_version = "1.3.0"
commit = false
tag = false
message = "Bump version: {current_version} -> {new_version}"
[[tool.bumpversion.files]]
filename = "pyproject.toml"
search = "version = \"{current_version}\""
replace = "version = \"{new_version}\""
[[tool.bumpversion.files]]
filename = "mini_afsd/__init__.py"
search = "__version__ = '{current_version}'"
replace = "__version__ = '{new_version}'"