-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #159 from CAVEconnectome/pcg-doc-order
Change chunkedgraph doc ordering, add badges
- Loading branch information
Showing
4 changed files
with
10 additions
and
3 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
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 |
---|---|---|
|
@@ -14,3 +14,4 @@ title: client.chunkedgraph | |
options: | ||
heading_level: 2 | ||
show_bases: false | ||
members_order: source |
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 |
---|---|---|
|
@@ -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, | ||
|