-# Copyright (C) 2018 Łukasz Langa
+# Copyright (C) 2020 Łukasz Langa
from setuptools import setup
import sys
import os
if USE_MYPYC:
mypyc_targets = [
- "black.py",
- "blib2to3/pytree.py",
- "blib2to3/pygram.py",
- "blib2to3/pgen2/parse.py",
- "blib2to3/pgen2/grammar.py",
- "blib2to3/pgen2/token.py",
- "blib2to3/pgen2/driver.py",
- "blib2to3/pgen2/pgen.py",
+ "src/black/__init__.py",
+ "src/blib2to3/pytree.py",
+ "src/blib2to3/pygram.py",
+ "src/blib2to3/pgen2/parse.py",
+ "src/blib2to3/pgen2/grammar.py",
+ "src/blib2to3/pgen2/token.py",
+ "src/blib2to3/pgen2/driver.py",
+ "src/blib2to3/pgen2/pgen.py",
]
from mypyc.build import mypycify
setup(
name="black",
use_scm_version={
- "write_to": "_black_version.py",
+ "write_to": "src/_black_version.py",
"write_to_template": 'version = "{version}"\n',
},
description="The uncompromising code formatter.",
url="https://github.com/psf/black",
project_urls={"Changelog": "https://github.com/psf/black/blob/master/CHANGES.md"},
license="MIT",
- py_modules=["black", "blackd", "_black_version"],
+ py_modules=["_black_version"],
ext_modules=ext_modules,
- packages=["blib2to3", "blib2to3.pgen2"],
+ packages=["blackd", "black", "blib2to3", "blib2to3.pgen2"],
+ package_dir={"": "src"},
package_data={"blib2to3": ["*.txt"]},
python_requires=">=3.6",
zip_safe=False,
fs = partial(black.format_str, mode=black.FileMode())
THIS_FILE = Path(__file__)
THIS_DIR = THIS_FILE.parent
+PROJECT_ROOT = THIS_DIR.parent
DETERMINISTIC_HEADER = "[Deterministic header]"
EMPTY_LINE = "# EMPTY LINE WITH WHITESPACE" + " (this comment will be removed)"
PY36_ARGS = [
name += ".py"
_input: List[str] = []
_output: List[str] = []
- base_dir = THIS_DIR / "data" if data else THIS_DIR
+ base_dir = THIS_DIR / "data" if data else PROJECT_ROOT
with open(base_dir / name, "r", encoding="utf8") as test:
lines = test.readlines()
result = _input
self.checkSourceFile("tests/test_black.py")
def test_black(self) -> None:
- self.checkSourceFile("black.py")
+ self.checkSourceFile("src/black/__init__.py")
def test_pygram(self) -> None:
- self.checkSourceFile("blib2to3/pygram.py")
+ self.checkSourceFile("src/blib2to3/pygram.py")
def test_pytree(self) -> None:
- self.checkSourceFile("blib2to3/pytree.py")
+ self.checkSourceFile("src/blib2to3/pytree.py")
def test_conv(self) -> None:
- self.checkSourceFile("blib2to3/pgen2/conv.py")
+ self.checkSourceFile("src/blib2to3/pgen2/conv.py")
def test_driver(self) -> None:
- self.checkSourceFile("blib2to3/pgen2/driver.py")
+ self.checkSourceFile("src/blib2to3/pgen2/driver.py")
def test_grammar(self) -> None:
- self.checkSourceFile("blib2to3/pgen2/grammar.py")
+ self.checkSourceFile("src/blib2to3/pgen2/grammar.py")
def test_literals(self) -> None:
- self.checkSourceFile("blib2to3/pgen2/literals.py")
+ self.checkSourceFile("src/blib2to3/pgen2/literals.py")
def test_parse(self) -> None:
- self.checkSourceFile("blib2to3/pgen2/parse.py")
+ self.checkSourceFile("src/blib2to3/pgen2/parse.py")
def test_pgen(self) -> None:
- self.checkSourceFile("blib2to3/pgen2/pgen.py")
+ self.checkSourceFile("src/blib2to3/pgen2/pgen.py")
def test_tokenize(self) -> None:
- self.checkSourceFile("blib2to3/pgen2/tokenize.py")
+ self.checkSourceFile("src/blib2to3/pgen2/tokenize.py")
def test_token(self) -> None:
- self.checkSourceFile("blib2to3/pgen2/token.py")
+ self.checkSourceFile("src/blib2to3/pgen2/token.py")
def test_setup(self) -> None:
self.checkSourceFile("setup.py")
def test_piping(self) -> None:
- source, expected = read_data("../black", data=False)
+ source, expected = read_data("src/black/__init__", data=False)
result = BlackRunner().invoke(
black.main,
["-", "--fast", f"--line-length={black.DEFAULT_LINE_LENGTH}"],
def test_symlink_out_of_root_directory(self) -> None:
path = MagicMock()
- root = THIS_DIR
+ root = THIS_DIR.resolve()
child = MagicMock()
include = re.compile(black.DEFAULT_INCLUDES)
exclude = re.compile(black.DEFAULT_EXCLUDES)