forked from schacon/hg-git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
38 lines (34 loc) · 818 Bytes
/
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
[metadata]
name = hg-git
author = Scott Chacon, Augie Fackler, Kevin Bullock and others
maintainer = The hg-git maintainers
maintainer_email = [email protected]
url = http://foss.heptapod.net/mercurial/hg-git
description = push to and pull from a Git repository using Mercurial
long_description = file:README.rst
long_description_content_type = text/x-rst
keywords = hg git mercurial
license = GPLv2
[options]
include_package_data=True
zip_safe=False
python_requires = >=3.9
packages =
hggit
hggit.helptext
install_requires=
dulwich>=0.21.6,<0.23.0
[options.package_data]
* = *.txt, *.rst
[flake8]
# E,W will ignore all pep8
ignore=E129
exclude=./tests,./contrib/
[coverage:report]
precision = 2
omit =
hggit/__version__.py
include =
hggit/*
exclude_lines =
raise NotImplementedError