File: setup.cfg

package info (click to toggle)
hg-git 1.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,372 kB
  • sloc: python: 8,708; sh: 185; makefile: 23
file content (38 lines) | stat: -rw-r--r-- 816 bytes parent folder | download
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 = hg-git@googlegroups.com
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.24.0,<0.25

[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