diff --git a/.gitignore b/.gitignore index 9d4a0b5..e1b7db7 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,6 @@ __pycache__ .pytest_cache coverage.lcov htmlcov + +# Build stuff +dist diff --git a/docs/data/index.md b/docs/data/index.md index 4c720cc..60f100d 100644 --- a/docs/data/index.md +++ b/docs/data/index.md @@ -1,8 +1,4 @@ --- title: SNEWS Data Specification — Timestamps -summary: A brief description of my document. -authors: - - Waylan Limberg - - Tom Christie -date: 2018-07-10 +summary: TODO. --- diff --git a/pyproject.toml b/pyproject.toml index 7c8b886..9a14e3d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,9 +2,11 @@ name = "snews-data-formats" version = "1.0.0a" description = "A unified collection of SNEWS data, models, and schema" -authors = ["Justin Vasel "] +authors = ["SNEWS Collaboration "] +maintainers = ["Justin Vasel "] license = "BSD 3-Clause" readme = "README.md" +repository = "https://github.com/SNEWS2/snews-data-formats" packages = [{include = "snews"}] diff --git a/snews/__version__.py b/snews/__version__.py index 66ffa90..2c7d7bd 100644 --- a/snews/__version__.py +++ b/snews/__version__.py @@ -7,4 +7,4 @@ from single_version import get_version __version__ = get_version("snews", Path(__file__).parent.parent) -schema_version = "1a" +schema_version = "0.1"