X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/5938106ac4932cb9015122352c87e2f1daba55e8..6bedb5c58a7d8c25aa9509f8217bc24e9797e90d:/setup.py diff --git a/setup.py b/setup.py index d4e9405..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,9 @@ 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", ], extras_require={"d": ["aiohttp>=3.3.2", "aiohttp-cors"]}, test_suite="tests.test_black", @@ -51,6 +54,7 @@ setup( "Programming Language :: Python", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3 :: Only", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Software Development :: Quality Assurance",