File: setup.cfg

package info (click to toggle)
germinate 2.48
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 488 kB
  • sloc: python: 4,853; perl: 47; makefile: 18; sh: 1
file content (40 lines) | stat: -rw-r--r-- 850 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
39
40
[metadata]
name = germinate
version = 2.48
description = Expand dependencies in a list of seed packages
author = Scott James Remnant
author_email = scott@ubuntu.com
maintainer = Colin Watson
maintainer_email = cjwatson@ubuntu.com
url = https://wiki.ubuntu.com/Germinate
license = GNU GPL

[options]
packages = find:
install_requires =
    # python-apt doesn't build an egg, so we can't use this.
    # apt >= 0.7.93
    importlib-metadata; python_version < "3.8"
scripts =
    bin/germinate
    bin/germinate-pkg-diff
    bin/germinate-update-metapackage
include_package_data = True

[options.data_files]
share/man/man1 =
    man/germinate.1
    man/germinate-pkg-diff.1
    man/germinate-update-metapackage.1

[options.extras_require]
test =
    fixtures
    flake8
    testtools

[flake8]
ignore =
    # Incompatible with Black.
    E203,
    W503