-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (40 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
44 lines (40 loc) · 1.26 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
[build-system]
# Specifies the build system to use.
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"
[project]
# Basic information about your project.
name = "your-package-name"
version = "0.1.0"
dependencies = []
requires-python = ">=3.7"
authors = [
{name = "Your Name", email = "your.email@example.com"}
]
maintainers = [
{name = "Your Name", email = "your.email@example.com"}
]
description = "A brief description of your package"
readme = "README.md"
license = { text = "MIT" }
keywords = ["example", "package", "keywords"]
classifiers = [
"Programming Language :: Python"
]
[project.urls]
# Various URLs related to your project. These links are displayed on PyPI.
Homepage = "https://example.com"
Documentation = "https://readthedocs.org"
Repository = "https://github.com/yourusername/your-repo"
"Bug Tracker" = "https://github.com/yourusername/your-repo/issues"
Changelog = "https://github.com/yourusername/your-repo/blob/master/CHANGELOG.md"
[project.scripts]
# Defines command-line scripts for your package. Replace with your script and function.
your-command = "your_module:your_function"
[project.optional-dependencies]
# Optional dependencies that can be installed with extra tags, like "dev".
dev = [
"pytest",
"black",
"flake8"
]