]> git.madduck.net Git - etc/vim.git/blobdiff - setup.py

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Switch from versioneer to setuptools-scm (#1008)
[etc/vim.git] / setup.py
index 32329d3e704af663e79fa966ccbf2f8b1fd3d1a7..d4e940584ed8c60e94b8956ecc2da611f217128a 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,6 @@
 # Copyright (C) 2018 Łukasz Langa
 from setuptools import setup
 import sys
-import versioneer
 
 assert sys.version_info >= (3, 6, 0), "black requires Python 3.6+"
 from pathlib import Path  # noqa E402
@@ -17,8 +16,10 @@ def get_long_description() -> str:
 
 setup(
     name="black",
-    version=versioneer.get_version(),
-    cmdclass=versioneer.get_cmdclass(),
+    use_scm_version={
+        "write_to": "_version.py",
+        "write_to_template": 'version = "{version}"\n',
+    },
     description="The uncompromising code formatter.",
     long_description=get_long_description(),
     long_description_content_type="text/markdown",