X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/5938106ac4932cb9015122352c87e2f1daba55e8..a701659da2e2b8cc5abca2c6c7c97832551627c0:/setup.py?ds=inline diff --git a/setup.py b/setup.py index d4e9405..cc49292 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,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.", @@ -39,6 +39,8 @@ setup( "appdirs", "toml>=0.9.4", "typed-ast>=1.3.1", + "regex", + "pathspec>=0.6, <1", ], extras_require={"d": ["aiohttp>=3.3.2", "aiohttp-cors"]}, test_suite="tests.test_black", @@ -51,6 +53,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",