Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Commit

Permalink
Revise dandi-cli to conform for linc-cli
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Kanzer authored and Aaron Kanzer committed Nov 27, 2023
1 parent 80114bc commit 062cbc5
Show file tree
Hide file tree
Showing 104 changed files with 11 additions and 14 deletions.
3 changes: 0 additions & 3 deletions .pypirc
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
[pypi]
username = __token__
password = pypi-AgEIcHlwaS5vcmcCJDE3MjMzZDczLTExM2QtNGY0ZS1iMmY0LTcxNGM3NTY5NGU0NQACKlszLCI3MDM5NDU5Yi05ZjkzLTQ0ZjYtYWZlMS02MTU3MTNmNzU2ZDkiXQAABiC4dolGR5CXL5UHbRoyh4UEi9b8T0U3l7jL1eS6EeaCgw
8 changes: 4 additions & 4 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@

# -- Project information -----------------------------------------------------

import dandi
import lincbrain

project = "dandi"
project = "lincbrain"
copyright = "2021-2023, DANDI Team"
author = "DANDI Team"

# The full version, including alpha/beta/rc tags
version = dandi.__version__
release = dandi.__version__
version = lincbrain.__version__
release = lincbrain.__version__


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/source/examples/dandiapi-as_readable.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from dandi.dandiapi import DandiAPIClient
from lincbrain.dandiapi import DandiAPIClient

dandiset_id = "000006" # ephys dataset from the Svoboda Lab
filepath = "sub-anm372795/sub-anm372795_ses-20170718.nwb" # 450 kB file
Expand Down
2 changes: 1 addition & 1 deletion docs/source/examples/dandiapi-example.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import json

from dandi.dandiapi import DandiAPIClient
from lincbrain.dandiapi import DandiAPIClient

with DandiAPIClient.for_dandi_instance("dandi") as client:
for dandiset in client.get_dandisets():
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ packages = find_namespace:
include_package_data = True

[options.packages.find]
include = dandi*
include = lincbrain*

[options.extras_require]
# I bet will come handy
Expand Down Expand Up @@ -101,7 +101,7 @@ all =

[options.entry_points]
console_scripts =
lincbrain=dandi.cli.command:main
lincbrain=lincbrain.cli.command:main

[flake8]
max-line-length = 100
Expand All @@ -113,8 +113,8 @@ extend-exclude =
[versioneer]
VCS = git
style = pep440
versionfile_source = dandi/_version.py
versionfile_build = dandi/_version.py
versionfile_source = lincbrain/_version.py
versionfile_build = lincbrain/_version.py
tag_prefix =
parentdir_prefix =

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@
if __name__ == "__main__":
setup(
name="lincbrain",
version="0.6.0",
version="0.9.0",
cmdclass={},
)

0 comments on commit 062cbc5

Please sign in to comment.