X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/e9d4e7b67f359114ba57ecf0c1300f7eb4f08950..6bedb5c58a7d8c25aa9509f8217bc24e9797e90d:/setup.py diff --git a/setup.py b/setup.py index 37fe820..614a8d6 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: @@ -17,7 +18,7 @@ def get_long_description() -> str: setup( name="black", use_scm_version={ - "write_to": "_version.py", + "write_to": "_black_version.py", "write_to_template": 'version = "{version}"\n', }, description="The uncompromising code formatter.", @@ -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,7 +39,7 @@ 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", ],