-
Notifications
You must be signed in to change notification settings - Fork 156
/
Copy pathpyproject.toml
53 lines (46 loc) · 1.44 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 = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "git-remote-dropbox"
authors = [
{ name = "Anish Athalye", email = "[email protected]" },
]
description = "A transparent bidirectional bridge between Git and Dropbox"
readme = "README.md"
requires-python = ">=3.6"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Version Control",
]
keywords = ["git", "dropbox"]
dynamic = ["version"]
dependencies = [
"dropbox>=12,<13"
]
[project.scripts]
git-remote-dropbox = "git_remote_dropbox.cli.helper:main"
git-dropbox = "git_remote_dropbox.cli.manage:main"
# Users might have a `git dropbox` alias set up for `git-dropbox-manage`,
# according to the old instructions. Don't break their config.
git-dropbox-manage = "git_remote_dropbox.cli.manage:main"
[project.urls]
homepage = "https://github.com/anishathalye/git-remote-dropbox"
repository = "https://github.com/anishathalye/git-remote-dropbox.git"
issues = "https://github.com/anishathalye/git-remote-dropbox/issues"
[tool.hatch.version]
path = "src/git_remote_dropbox/__init__.py"
[tool.hatch.envs.types]
extra-dependencies = [
"mypy>=1.0.0",
]
[tool.hatch.envs.types.scripts]
check = "mypy --strict --install-types --non-interactive {args:src tests}"
[tool.ruff.lint]
ignore = [
"FA100",
"T201",
]