forked from anishathalye/dotbot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (27 loc) · 769 Bytes
/
pyproject.toml
File metadata and controls
33 lines (27 loc) · 769 Bytes
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "dotbot"
description = "A tool that bootstraps your dotfiles"
urls = { source = "https://github.com/aikow/dotbot" }
readme = "README.md"
requires-python = ">=3.6"
license = { text = "MIT" }
keywords = ["dotfiles"]
authors = [
{ name = "Anish Athalye", email = "me@anishathalye.com" },
{ name = "Aiko Wessels", email = "aiko.wessels@gmail.com" },
]
dynamic = ["version"]
[project.optional-dependencies]
dev = ["black", "isort", "flake8", "pytest"]
[project.scripts]
dotbot = "dotbot:main"
[tool.setuptools.dynamic]
version = { attr = "dotbot.__version__" }
[tool.black]
target_version = ["py36"]
line-length = 88
[tool.isort]
profile = "black"