-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
53 lines (47 loc) · 1 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]
build-backend = 'setuptools.build_meta'
requires = [
'setuptools >= 43.0.0', # https://github.com/pypa/setuptools/pull/1634
]
[project]
name = 'deptree'
#
authors = [
{ name = 'sinoroc', email = '[email protected]' },
]
description = 'Display installed Python projects as a tree of dependencies'
license.text = 'Apache-2.0'
readme = 'README.rst'
urls.GitLab = 'https://gitlab.com/sinoroc/deptree'
urls.GitHub = 'https://github.com/sinoroc/deptree'
urls.PyPI = 'https://pypi.org/project/deptree/'
#
requires-python = '>=3.7' # for `dataclasses`
#
dependencies = [
'importlib-metadata',
'setuptools', # for `pkg_resources`
]
optional-dependencies.dev-package = [
'build',
'twine',
'zapp',
]
optional-dependencies.dev-test = [
'pytest',
'pytest-mypy',
'pytest-pycodestyle',
'pytest-pydocstyle',
'pytest-pylint',
'pytest-yapf3',
'types-setuptools',
'yapf',
]
#
scripts.deptree = 'deptree.cli:main'
#
dynamic = [
'version',
]
# EOF