Skip to content

Commit

Permalink
Merge pull request #159 from CAVEconnectome/pcg-doc-order
Browse files Browse the repository at this point in the history
Change chunkedgraph doc ordering, add badges
  • Loading branch information
bdpedigo authored Mar 12, 2024
2 parents 1b54aa4 + 2749410 commit 60ec87a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# CAVEclient

![PyPI - Version](https://img.shields.io/pypi/v/CAVEclient)
[![build status](https://github.com/CAVEconnectome/CAVEclient/actions/workflows/daily.yml/badge.svg)](https://github.com/CAVEconnectome/CAVEclient/actions/workflows/daily.yml) [![Downloads](https://static.pepy.tech/badge/caveclient)](https://pepy.tech/project/caveclient)

CAVE is short for Connectome Annotation Versioning Engine. CAVE is a set of microservices
that provide a framework for storing and versioning connectomics data and large sets of
dynamic annotations, metadata, and segmentations. This repository supplies client-side
Expand Down
1 change: 1 addition & 0 deletions docs/client_api/chunkedgraph.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ title: client.chunkedgraph
options:
heading_level: 2
show_bases: false
members_order: source
3 changes: 3 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ title: Home
hide_toc: true
---

![PyPI - Version](https://img.shields.io/pypi/v/CAVEclient)
[![build status](https://github.com/CAVEconnectome/CAVEclient/actions/workflows/daily.yml/badge.svg)](https://github.com/CAVEconnectome/CAVEclient/actions/workflows/daily.yml) [![Downloads](https://static.pepy.tech/badge/caveclient)](https://pepy.tech/project/caveclient)

CAVE is short for Connectome Annotation Versioning Engine. CAVE is a set of microservices
that provide a framework for storing and versioning connectomics data and large sets of
dynamic annotations, metadata, and segmentations. This repository supplies client-side
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,17 @@ def find_version(*file_paths):

# read the contents of README file
this_directory = Path(__file__).parent
long_description = (this_directory / "README.rst").read_text()
long_description = (this_directory / "README.md").read_text()

setup(
version=find_version("caveclient", "__init__.py"),
name="caveclient",
description="a service for interacting with the Connectome Annotation Versioning Engine",
long_description=long_description,
long_description_content_type="text/x-rst",
long_description_content_type="text/markdown",
author="Forrest Collman, Casey Schneider-Mizell, Sven Dorkenwald",
author_email="[email protected],[email protected],[email protected],",
url="https://github.com/seung-lab/CAVEclient",
url="https://github.com/CAVEconnectome/CAVEclient",
packages=find_packages(where="."),
include_package_data=True,
install_requires=required,
Expand Down

0 comments on commit 60ec87a

Please sign in to comment.