-
Notifications
You must be signed in to change notification settings - Fork 0
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
6be6378
commit de713b0
Showing
2 changed files
with
19 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,4 @@ scipy>=1.5.4 | |
seaborn>=0.11.2 | ||
ipython | ||
ipython_genutils | ||
datasci_tools @ git+https://[email protected]/bacelii/datasci_tools.git | ||
datasci-stdlib-tools>=1.0.0 |
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 |
---|---|---|
|
@@ -17,15 +17,30 @@ def get_links(): | |
return [ | ||
#"git+https://github.com/bacelii/machine_learning_tools.git" | ||
] | ||
|
||
|
||
def get_long_description(filepath='README.md'): | ||
try: | ||
import pypandoc | ||
long_description = pypandoc.convert_file(filepath, 'rst') | ||
except: | ||
print("\n\n\n****Need to install pypandoc (and if havent done so install apt-get install pandoc) to make long description clean****\n\n\n") | ||
|
||
long_description = Path("README.md").read_text() | ||
|
||
return long_description | ||
|
||
|
||
setup( | ||
name='neuron_morphology_tools', # the name of the package, which can be different than the folder when using pip instal | ||
version='1.0.0', | ||
description='', | ||
author='Brendan Celii', | ||
author_email='brendanacelii', | ||
long_description=get_long_description(), | ||
project_urls={ | ||
'Source':"https://github.com/reimerlab/neuron_morphology_tools", | ||
'Documentation':"https://reimerlab.github.io/neuron_morphology_tools/", | ||
}, | ||
author='Brendan Celii', | ||
author_email='[email protected]', | ||
packages=find_packages(), #teslls what packages to be included for the install | ||
install_requires=get_install_requires(), #external packages as dependencies | ||
dependency_links = get_links(), | ||
|