-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* make package so that `_version.py` doesn't get written to top-level of `site-packages` dir * update .gitignore _version.py path changed
- Loading branch information
1 parent
151d433
commit d235d05
Showing
5 changed files
with
5 additions
and
5 deletions.
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 |
---|---|---|
|
@@ -60,4 +60,4 @@ docs/_build/ | |
target/ | ||
|
||
# scm version | ||
src/_version.py | ||
src/ufonormalizer/_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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
include README.md | ||
include LICENSE.txt | ||
recursive-include src/ *.py | ||
recursive-include src/ufonormalizer/ *.py | ||
recursive-include tests/ *.py | ||
recursive-include tests/data/ *.glif |
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
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 |
---|---|---|
|
@@ -9,14 +9,14 @@ | |
author_email="[email protected]", | ||
url="https://github.com/unified-font-object/ufoNormalizer", | ||
package_dir={"": "src"}, | ||
py_modules=['ufonormalizer', '_version'], | ||
packages={"ufonormalizer"}, | ||
entry_points={ | ||
'console_scripts': [ | ||
"ufonormalizer = ufonormalizer:main", | ||
] | ||
}, | ||
use_scm_version={ | ||
"write_to": 'src/_version.py', | ||
"write_to": 'src/ufonormalizer/_version.py', | ||
"write_to_template": '__version__ = "{version}"', | ||
}, | ||
setup_requires=['setuptools_scm'], | ||
|
File renamed without changes.