-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathsetup.cfg
45 lines (41 loc) · 1.1 KB
/
setup.cfg
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
[metadata]
name = darker
version = attr: darker.version.__version__
author = Antti Kaihola
author_email = [email protected]
license = BSD
license_file = LICENSE.rst
description = Apply Black formatting only in regions changed since last commit
long_description = file:README.rst
long_description_content_type = text/x-rst
classifiers =
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
project_urls =
Source Code = https://github.com/akaihola/darker
Change Log = https://github.com/akaihola/darker/CHANGES.rst
url = https://github.com/akaihola/darker
[options]
include_package_data = True
package_dir =
=src
packages = find:
install_requires =
black
typing-extensions ; python_version < "3.8"
python_requires = >=3.6
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
darker = darker.__main__:main
[options.extras_require]
isort =
isort>=5.0.1
test =
pytest
pytest-black
pytest-isort>=1.1.0
pytest-mypy