File: setup.py

package info (click to toggle)
sphinxcontrib-towncrier 0.4.0a0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 380 kB
  • sloc: python: 727; makefile: 3
file content (18 lines) | stat: -rwxr-xr-x 600 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#! /usr/bin/env python3

# NOTE: THIS FILE IS IMMUTABLE AND SHOULD REMAIN UNCHANGED UNLESS THERE ARE
# NOTE: SERIOUS REASONS TO EDIT IT. THIS IS ENFORCED BY THE PRE-COMMIT TOOL.

"""The distribution package setuptools installer for sphinxcontrib-towncrier.

The presence of this file ensures the support of pip editable mode
*with setuptools only*.

It is also required for `tox --devenv some-env-folder` command to work
because it does `pip install -e .` under the hood.
"""
from setuptools import setup


# pylint: disable=expression-not-assigned
__name__ == '__main__' and setup()  # noqa: WPS428