/loggerhead/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/loggerhead/trunk

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Ubuntu One Auto Copilot
  • Author(s): Colin Watson
  • Date: 2022-02-23 19:58:34 UTC
  • mfrom: (519.1.6 drop-python3)
  • Revision ID: otto-copilot@canonical.com-20220223195834-yx8q035di1rteb7n
Drop support for Python < 3 and Breezy < 3.1.

Merged from https://code.launchpad.net/~jelmer/loggerhead/drop-python3/+merge/411875

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
 
29
29
 
30
30
setup(
31
 
    name = "loggerhead",
32
 
    version = loggerhead.__version__,
33
 
    description = "Loggerhead is a web viewer for projects in bazaar",
 
31
    name="loggerhead",
 
32
    version=loggerhead.__version__,
 
33
    description="Loggerhead is a web viewer for projects in bazaar",
34
34
    long_description=long_description,
35
35
    long_description_content_type="text/x-rst",
36
 
    license = "GNU GPL v2 or later",
37
 
    maintainer = "Michael Hudson",
38
 
    maintainer_email = "michael.hudson@canonical.com",
39
 
    scripts = [
 
36
    license="GNU GPL v2 or later",
 
37
    maintainer="Michael Hudson",
 
38
    maintainer_email="michael.hudson@canonical.com",
 
39
    scripts=[
40
40
        "loggerhead-serve",
41
41
        ],
42
 
    packages = ["loggerhead",
43
 
                "loggerhead/apps",
44
 
                "loggerhead/controllers",
45
 
                "loggerhead/middleware",
46
 
                "loggerhead/templates",
47
 
                "breezy.plugins.loggerhead"],
48
 
    package_dir={'breezy.plugins.loggerhead':'.'},
49
 
    package_data = {"loggerhead": ["templates/*.pt",
50
 
                                   "static/css/*.css",
51
 
                                   "static/javascript/*.js",
52
 
                                   "static/images/*"]},
53
 
    data_files = [
 
42
    packages=["loggerhead",
 
43
              "loggerhead/apps",
 
44
              "loggerhead/controllers",
 
45
              "loggerhead/middleware",
 
46
              "loggerhead/templates",
 
47
              "breezy.plugins.loggerhead"],
 
48
    package_dir={'breezy.plugins.loggerhead': '.'},
 
49
    package_data={"loggerhead": ["templates/*.pt",
 
50
                                 "static/css/*.css",
 
51
                                 "static/javascript/*.js",
 
52
                                 "static/images/*"]},
 
53
    data_files=[
54
54
        ('share/man/man1', ['loggerhead-serve.1']),
55
55
        ('share/doc/loggerhead', ['apache-loggerhead.conf',
56
56
                                  'loggerheadd',
57
57
                                  'breezy.conf']),
58
58
        ],
59
 
    install_requires=['paste', 'bleach'],
 
59
    install_requires=[
 
60
        'paste',
 
61
        'bleach',
 
62
        'breezy>=3.1',
 
63
    ],
60
64
    testsuite='loggerhead.tests.test_suite',
61
65
    )