-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
75d0de8
commit 890a1b4
Showing
8 changed files
with
201 additions
and
152 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
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,5 +1,10 @@ | ||
import platform | ||
from setuptools import setup, find_namespace_packages, Extension | ||
from os import path | ||
|
||
this_directory = path.abspath(path.dirname(__file__)) | ||
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f: | ||
long_description = f.read() | ||
|
||
requirements = [ | ||
"numpy", | ||
|
@@ -88,8 +93,10 @@ | |
|
||
setup( | ||
name="cellfinder", | ||
version="0.3.8rc0", | ||
description="Cell detection for whole-brain microscopy", | ||
version="0.3.8", | ||
description="Automated 3D cell detection and registration of whole-brain images", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
install_requires=requirements, | ||
extras_require={ | ||
"dev": [ | ||
|
@@ -136,7 +143,11 @@ | |
"cellfinder_curate = cellfinder.train.curation:main", | ||
] | ||
}, | ||
url="https://github.com/SainsburyWellcomeCentre/cellfinder", | ||
project_urls={ | ||
"Source Code": "https://github.com/SainsburyWellcomeCentre/cellfinder", | ||
"Bug Tracker": "https://github.com/SainsburyWellcomeCentre/cellfinder/issues", | ||
"Documentation": "https://sainsburywellcomecentre.github.io/cellfinder", | ||
}, | ||
author="Adam Tyson, Christian Niedworok, Charly Rousseau", | ||
author_email="[email protected]", | ||
classifiers=[ | ||
|