-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
determine version automatically from latest git tag
using setuptools_scm
- Loading branch information
1 parent
e100e66
commit a3473c7
Showing
3 changed files
with
9 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,5 @@ dist | |
*~ | ||
*.so | ||
.tox/ | ||
# autogenerated from git tag by setuptools_scm | ||
src/zopfli/_version.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,7 +59,7 @@ def build_extensions(self): | |
|
||
setup( | ||
name='zopfli', | ||
version='0.1.8', | ||
use_scm_version={"write_to": "src/zopfli/_version.py"}, | ||
author='Adam DePrince', | ||
author_email='[email protected]', | ||
maintainer='Cosimo Lupo', | ||
|
@@ -87,4 +87,5 @@ def build_extensions(self): | |
cmdclass={ | ||
"build_ext": custom_build_ext, | ||
}, | ||
setup_requires=["setuptools_scm"], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters