COLLECTED BY
Organization:
Internet Archive
Focused crawls are collections of frequently-updated webcrawl data from narrow (as opposed to broad or wide) web crawls, often focused on a single domain or subdomain.
The Wayback Machine - https://web.archive.org/web/20201225003510/https://github.com/tox-dev/tox/blob/master/setup.py
Permalink
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.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.