-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
47 lines (43 loc) · 1.09 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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "MyHelloWorldProject"
version = "0.1.3"
description = "YOUR DESCRIPTION"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "CC0-1.0"}
keywords = ["template", "example"]
authors = [
{name = "EPC MSU", email = "YOUR_EMAIL@physlab.ru"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
]
dependencies = [
# YOUR DEPENDENCIES ARE HERE
]
[project.optional-dependencies]
dev = [
"flake8",
"tox",
"bump2version",
]
all = [
"flake8",
"tox",
"bump2version",
]
[project.urls]
Homepage = "https://github.com/EPC-MSU/URL_TO_YOUR_PROJECT"
Repository = "https://github.com/EPC-MSU/URL_TO_YOUR_PROJECT"
Issues = "https://github.com/EPC-MSU/URL_TO_YOUR_PROJECT/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["hello_world*"]