-
Notifications
You must be signed in to change notification settings - Fork 39
/
pyproject.toml
38 lines (33 loc) · 1.01 KB
/
pyproject.toml
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
[project]
name = "pypyp"
version = "1.2.0"
authors = [{name = "Shantanu Jain"}, {email = "hauntsaninja@gmail.com"}]
description = "Easily run Python at the shell! Magical, but never mysterious."
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
"Topic :: Utilities",
]
requires-python = ">=3.8"
dependencies = ["astunparse; python_version<'3.9'"]
[project.scripts]
pyp = "pyp:main"
pypyp = "pyp:main"
[project.urls]
homepage = "https://github.com/hauntsaninja/pyp"
repository = "https://github.com/hauntsaninja/pyp"
changelog = "https://github.com/hauntsaninja/pyp/blob/master/CHANGELOG.md"
[tool.flit.module]
name = "pyp"
[build-system]
requires = ["flit_core>=3.4"]
build-backend = "flit_core.buildapi"
[tool.black]
line-length = 100
skip-magic-trailing-comma = true