-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace versioneer with setuptools_scm. (#111)
- Loading branch information
1 parent
8edf916
commit e41483f
Showing
18 changed files
with
115 additions
and
2,638 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 |
---|---|---|
|
@@ -150,3 +150,4 @@ docs/source/tutorials/.sid_* | |
# sid | ||
.sid/ | ||
src/__init__.py | ||
src/sid/_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
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,7 +1,5 @@ | ||
include CITATION | ||
include LICENSE | ||
include versioneer.py | ||
include src/sid/_version.py | ||
|
||
recursive-include src *.csv | ||
|
||
|
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 |
---|---|---|
|
@@ -25,5 +25,3 @@ coverage: | |
ignore: | ||
- ".tox/**/*" | ||
- "setup.py" | ||
- "versioneer.py" | ||
- "src/sid/_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
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
|
@@ -8,6 +8,8 @@ channels: | |
dependencies: | ||
- python >=3.6 | ||
- pip | ||
- setuptools_scm | ||
- toml | ||
|
||
# Conda | ||
- anaconda-client | ||
|
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 |
---|---|---|
@@ -1,10 +1,53 @@ | ||
# See the docstring in versioneer.py for instructions. Note that you must re-run | ||
# 'versioneer.py setup' after changing this section, and commit the resulting files. | ||
[metadata] | ||
name = sid_dev | ||
description = Simulate the spread of COVID-19 with different policies. | ||
long_description = file: README.rst | ||
long_description_content_type = text/x-rst | ||
url = https://github.com/covid-19-impact-lab/sid | ||
author = Janos Gabler, Tobias Raabe, Klara Roehrl | ||
author_email = janos.gabler@gmail.com | ||
license = MIT | ||
license_file = LICENSE | ||
platforms = any | ||
classifiers = | ||
Development Status :: 3 - Alpha | ||
Intended Audience :: Science/Research | ||
License :: OSI Approved :: MIT License | ||
Operating System :: OS Independent | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3 :: Only | ||
Programming Language :: Python :: 3.6 | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
Topic :: Scientific/Engineering | ||
project_urls = | ||
Changelog = https://sid-dev.readthedocs.io/en/latest/changes.html | ||
Documentation = https://sid-dev.readthedocs.io/en/latest | ||
Github = https://github.com/covid-19-impact-lab/sid | ||
Tracker = https://github.com/covid-19-impact-lab/sid/issues | ||
|
||
[versioneer] | ||
VCS = git | ||
style = pep440 | ||
versionfile_source = src/sid/_version.py | ||
versionfile_build = sid/_version.py | ||
tag_prefix = v | ||
parentdir_prefix = sid- | ||
[options] | ||
packages = find: | ||
install_requires = | ||
bokeh | ||
dask | ||
fastparquet | ||
numba>=0.48 | ||
numpy | ||
pandas>=1 | ||
python-snappy | ||
seaborn | ||
tqdm | ||
python_requires = >=3.6 | ||
include_package_data = True | ||
package_dir = | ||
=src | ||
zip_safe = False | ||
|
||
[options.packages.find] | ||
where = src | ||
|
||
[check-manifest] | ||
ignore = | ||
src/sid/_version.py |
Oops, something went wrong.