The Wayback Machine - https://web.archive.org/web/20201225003510/https://github.com/tox-dev/tox/blob/master/setup.py
Skip to content
Permalink
master
Go to file
 
 
Cannot retrieve contributors at this time
19 lines (16 sloc) 402 Bytes
# -*- coding: utf-8 -*-
import textwrap
from setuptools import setup
setup(
use_scm_version={
"write_to": "src/tox/version.py",
"write_to_template": textwrap.dedent(
"""
# coding: utf-8
from __future__ import unicode_literals
__version__ = {version!r}
""",
).lstrip(),
},
package_dir={"": "src"},
)
You can’t perform that action at this time.