X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/a701659da2e2b8cc5abca2c6c7c97832551627c0..12826f3c1e2ad75051d52cd2a81718a0349cc3db:/setup.py diff --git a/setup.py b/setup.py index cc49292..095d04a 100644 --- a/setup.py +++ b/setup.py @@ -6,6 +6,7 @@ assert sys.version_info >= (3, 6, 0), "black requires Python 3.6+" from pathlib import Path # noqa E402 CURRENT_DIR = Path(__file__).parent +sys.path.insert(0, str(CURRENT_DIR)) # for setuptools.build_meta def get_long_description() -> str: @@ -28,7 +29,7 @@ setup( author_email="lukasz@langa.pl", url="https://github.com/psf/black", license="MIT", - py_modules=["black", "blackd", "_version"], + py_modules=["black", "blackd", "_black_version"], packages=["blib2to3", "blib2to3.pgen2"], package_data={"blib2to3": ["*.txt"]}, python_requires=">=3.6", @@ -38,9 +39,10 @@ setup( "attrs>=18.1.0", "appdirs", "toml>=0.9.4", - "typed-ast>=1.3.1", + "typed-ast>=1.4.0", "regex", "pathspec>=0.6, <1", + "dataclasses>=0.6; python_version < '3.7'", ], extras_require={"d": ["aiohttp>=3.3.2", "aiohttp-cors"]}, test_suite="tests.test_black",