Skip to content

Commit

Permalink
ci: version bump [skip actions]
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Feb 1, 2024
1 parent a30dcbf commit 99831da
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 86 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# aind-library-template
# aind-data-upload

[![License](https://img.shields.io/badge/license-MIT-brightgreen)](LICENSE)
![Code Style](https://img.shields.io/badge/code%20style-black-black)
Expand Down
2 changes: 1 addition & 1 deletion doc_template/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from os.path import dirname, abspath
from pathlib import Path
from datetime import date
from aind_library_template import __version__ as package_version
from aind_data_upload import __version__ as package_version

INSTITUTE_NAME = "Allen Institute for Neural Dynamics"

Expand Down
9 changes: 4 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"

[project]
name = "aind-library-template"
description = "Prints messages to stdout. Simple boilerplate for libraries."
name = "aind-data-upload"
description = "Generated from aind-library-template"
license = {text = "MIT"}
requires-python = ">=3.7"
authors = [
Expand All @@ -17,7 +17,6 @@ readme = "README.md"
dynamic = ["version"]

dependencies = [
'pandas'
]

[project.optional-dependencies]
Expand All @@ -35,7 +34,7 @@ dev = [
where = ["src"]

[tool.setuptools.dynamic]
version = {attr = "aind_library_template.__version__"}
version = {attr = "aind_data_upload.__version__"}

[tool.black]
line-length = 79
Expand All @@ -60,7 +59,7 @@ exclude = '''

[tool.coverage.run]
omit = ["*__init__*"]
source = ["aind_library_template", "tests"]
source = ["aind_data_upload", "tests"]

[tool.coverage.report]
exclude_lines = [
Expand Down
2 changes: 2 additions & 0 deletions src/aind_data_upload/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
"""Init package"""
__version__ = "0.0.0"
3 changes: 0 additions & 3 deletions src/aind_library_template/__init__.py

This file was deleted.

34 changes: 0 additions & 34 deletions src/aind_library_template/message_handlers.py

This file was deleted.

42 changes: 0 additions & 42 deletions tests/test_message_handler.py

This file was deleted.

0 comments on commit 99831da

Please sign in to comment.