aboutsummaryrefslogtreecommitdiffhomepage
path: root/setup.cfg
blob: f7b67c9e07f557944184317ab5c60dc82540c31d (plain)
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
[nosetests]
with-doctest=1
with-xunit=1
cover-package=gbp
cover-erase=1
exe=1
verbosity=2

[flake8]
# E501: ignore line length
# E265: block comment should start with '# '
ignore=E501,E265,W504
builtins=unicode,execfile,raw_input

[metadata]
name = gbp
author = Guido Günther
author_email = agx@sigxcpu.org
url = https://honk.sigxcpu.org/piki/projects/git-buildpackage/
description = Suite to help with Debian packages in Git repositories
long_description = file: README.md
license = GPLv2-or-later
classifiers =
    Environment :: Console
    Programming Language :: Python :: 3
    Topic :: Software Development :: Version Control
    Operating System :: POSIX :: Linux

[options]
include_package_data = True
packages = find:
python_requires = >=3.5
install_requires =
    python-dateutil
    importlib-metadata; python_version<"3.8"
scripts =
    bin/git-pbuilder
    bin/gbp-builder-mock

[options.data_files]
share/git_buildpackage = gbp.conf

[options.entry_points]
console_scripts =
    gbp = gbp.scripts.supercommand:supercommand

[options.packages.find]
exclude =
    tests
    tests.*