forked from jacebrowning/gitman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
94 lines (72 loc) · 2.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[tool.poetry]
name = "gitman"
version = "2.0"
description = "A language-agnostic dependency manager using Git."
license = "MIT"
authors = ["Jace Browning <[email protected]>"]
readme = "README.md"
homepage = "https://pypi.org/project/gitman"
documentation = "https://gitman.readthedocs.io"
repository = "https://github.com/jacebrowning/gitman"
keywords = [
"git",
"version control",
"build systems",
"dependency management",
"submodules",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Version Control",
"Topic :: System :: Software Distribution",
]
[tool.poetry.dependencies]
python = "^3.7"
datafiles = ">=0.9"
minilog = "^1.5"
[tool.poetry.dev-dependencies]
# Formatters
black = "=19.10b0"
isort = "=4.3.21"
# Linters
mypy = "^0.761"
pydocstyle = "*"
pylint = { git = "https://github.com/PyCQA/pylint", rev = "e169e83e52fedc6624235d45e8e8737294a0fedf" } # 2.4.5 has not yet been released
# Testing
pytest = "^5.1.2"
pytest-cov = "*"
pytest-describe = "^1.0"
pytest-expecter = "^2.1"
pytest-random = "*"
freezegun = "*"
# Reports
coveragespace = "*"
# Documentation
mkdocs = "~1.0"
pygments = "^2.5.2"
# Tooling
pyinstaller = "*"
sniffer = "*"
MacFSEvents = { version = "*", platform = "darwin" }
pync = { version = "*", platform = "darwin" }
rope = "^0.14.0"
[tool.poetry.scripts]
gitman = "gitman.cli:main"
git-deps = "gitman.plugin:main"
[tool.black]
target-version = ["py36"]
skip-string-normalization = true
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"