-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
54 lines (47 loc) · 1.16 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "shbin"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "BSD 3-Clause License"}
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Topic :: Communications :: File Sharing",
]
authors = [
{name = "Alvar Maciel", email = "[email protected]"},
{name = "Martín Gaitán", email = "[email protected]"}
]
dependencies = [
"pygithub >= 1.55",
"pyclip >= 0.7.0",
"python-magic >= 0.4.27",
"docopt-ng >= 0.8.1",
"rich >= 12.5",
]
dynamic = ["version", "description"]
[project.urls]
Home = "https://github.com/Shiphero/shbin"
Changelog = "https://github.com/Shiphero/shbin/blob/main/CHANGELOG.md"
[project.scripts]
shbin = "shbin:main"
[project.optional-dependencies]
dev = [
"pytest",
"black",
"pytest-cov",
"flake8",
]
[tool.black]
target-version = ["py38"]
line-length = 120
color = true
[tool.ruff]
target-version = "py38"
line-length = 120