-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 1.32 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
[project]
name = "pyroll-plugin-name" # insert the name of yout plugin here
description = "Plugin for PyRoll providing ..." # edit the description
authors = [
{ name = "Your Name", email = "yourmail@server.com" }
]
license = "BSD-3-Clause" # may be changed to your wishes
requires-python = ">=3.9, <4.0"
dependencies = [
"pyroll-core ~= 2.0",
]
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Manufacturing",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Development Status :: 5 - Production/Stable",
"Framework :: Hatch",
"Framework :: IPython",
"Framework :: Jupyter",
"Framework :: Pytest",
"Framework :: Sphinx",
"Natural Language :: English",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://pyroll.readthedocs.io"
# change these URLs to your needs
Repository = "https://github.com/pyroll-project/pyroll-plugin-template"
Documentation = "https://github.com/pyroll-project/pyroll-plugin-template/blob/main/docs/docs.pdf"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"