Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Smaller fixes for packaging #6

Merged
merged 15 commits into from
May 5, 2020
1 change: 1 addition & 0 deletions bigfish/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

11 changes: 8 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

# Package meta-data.
VERSION = 1.0
DESCRIPTION = 'Toolbox for cell FISH images.'
DESCRIPTION = 'Toolbox for the analysis of smFISH images.'

# Package abstract dependencies
REQUIRES = [
Expand All @@ -19,14 +19,15 @@
'scikit-learn >= 0.20.2',
'scikit-image >= 0.14.2',
'scipy >= 1.2.0',
'tensorflow >= 1.12.0, < 2.0',
'matplotlib >= 3.0.2',
'pandas >= 0.24.0',
'numba >= 0.37.0',
'umap-learn >= 0.3.9',
'mrc >= 0.1.5'
]

DEEPLEARNING_REQUIREMENTS = ['tensorflow >= 1.12.0, < 2.0']

# Long description of the package
with open("README.md", "r") as f:
LONG_DESCRIPTION = f.read()
Expand Down Expand Up @@ -56,10 +57,14 @@
long_description_content_type="text/markdown",
author='Arthur Imbert',
author_email='[email protected]',
url='https://github.com/Henley13/big-fish',
url='https://github.com/fish-quant/big-fish',
packages=find_packages(),
license='MIT',
python_requires='>=3.6.0',
install_requires=REQUIRES,
extras_require={
'deeplearning': DEEPLEARNING_REQUIREMENTS
},
classifiers=CLASSIFIERS
)