-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed setuptools_scm as the non standard directory layout was causing problems. Some other strategy will likely be required for versioning in any case for the C API, so it's probably not appropriate here.
- Loading branch information
1 parent
9616825
commit 8a3cb81
Showing
4 changed files
with
7 additions
and
10 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
include lib/kastore.h |
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
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 |
---|---|---|
|
@@ -40,6 +40,7 @@ def finalize_options(self): | |
long_description=long_description, | ||
url='https://github.com/tskit-dev/kastore', | ||
author='tskit developers', | ||
version='0.1.0', | ||
# TODO setup a tskit developers email address. | ||
author_email='[email protected]', | ||
classifiers=[ | ||
|
@@ -67,8 +68,5 @@ def finalize_options(self): | |
'Bug Reports': 'https://github.com/tskit-dev/kastore/issues', | ||
'Source': 'https://github.com/tskit-dev/kastore', | ||
}, | ||
setup_requires=['numpy', 'setuptools_scm'], | ||
use_scm_version={ | ||
"root": "..", "relative_to": __file__, | ||
"write_to": "python/kastore/_version.py"}, | ||
setup_requires=['numpy'], | ||
) |