-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* initial commit * to keep changes * to keep changes * to keep changes * to keep changes * to keep changes * to keep changes * to keep changes * to keep changes * to keep changes
- Loading branch information
1 parent
9c89050
commit 4b69f9e
Showing
7 changed files
with
89 additions
and
45 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,51 @@ | ||
[metadata] | ||
description-file = README.md | ||
name = aydin | ||
url = https://royerlab.github.io/aydin/ | ||
download_url = https://github.com/royerlab/aydin | ||
license = BSD 3-Clause | ||
license_file = LICENSE.txt | ||
description = Aydin - Denoising but chill | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
classifiers = | ||
Development Status :: 3 - Alpha | ||
Environment :: X11 Applications :: Qt | ||
Intended Audience :: Science/Research | ||
License :: OSI Approved :: BSD License | ||
Programming Language :: Python :: 3 :: Only | ||
Programming Language :: Python :: 3.9 | ||
Topic :: Scientific/Engineering | ||
Topic :: Scientific/Engineering :: Image Processing | ||
Operating System :: Microsoft :: Windows | ||
Operating System :: POSIX | ||
Operating System :: Unix | ||
Operating System :: MacOS | ||
|
||
[options] | ||
zip_safe = False | ||
packages = find: | ||
python_requires = >=3.9 | ||
include_package_data = True | ||
install_requires = | ||
catboost==1.0.1 | ||
Click==8.0.3 | ||
czifile==2019.7.2 | ||
docstring-parser==0.12 | ||
gdown==4.2.0 | ||
googledrivedownloader==0.4 | ||
importlib-metadata==4.8.1 | ||
jsonpickle==1.3.0 | ||
lightgbm==3.3.1 | ||
napari==0.4.12 | ||
nd2reader==3.3.0 | ||
numba==0.54.1 | ||
numexpr==2.7.3 | ||
numpy>=1.19.2 | ||
pynndescent==0.5.5 | ||
PyQt5==5.15.5 | ||
QDarkStyle==3.0.2 | ||
qtpy==1.11.2 | ||
scikit-image==0.18.3 | ||
tensorflow==2.6.0 | ||
keras==2.6.0 | ||
zarr==2.4.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 |
---|---|---|
@@ -1,43 +1,32 @@ | ||
import sys | ||
import os | ||
from setuptools import setup | ||
|
||
|
||
if sys.version_info < (3, 7): | ||
if sys.version_info < (3, 9): | ||
sys.stderr.write( | ||
f'You are using Python ' | ||
+ "{'.'.join(str(v) for v in sys.version_info[:3])}.\n\n" | ||
+ 'aydin only supports Python 3.7 and above.\n\n' | ||
+ 'Please install Python 3.7 using:\n' | ||
+ ' $ pip install python==3.7\n\n' | ||
+ 'aydin only supports Python 3.9 and above.\n\n' | ||
+ 'Please install Python 3.9 using:\n' | ||
+ ' $ pip install python==3.9\n\n' | ||
) | ||
sys.exit(1) | ||
|
||
with open(os.path.join('requirements', 'default.txt')) as f: | ||
default_requirements = [ | ||
line.strip() for line in f if line and not line.startswith('#') | ||
] | ||
|
||
INSTALL_REQUIRES = default_requirements | ||
REQUIRES = [] | ||
# with open(os.path.join('requirements', 'default.txt')) as f: | ||
# default_requirements = [ | ||
# line.strip() for line in f if line and not line.startswith('#') | ||
# ] | ||
# | ||
# INSTALL_REQUIRES = default_requirements | ||
# REQUIRES = [] | ||
|
||
# Handle pyopencl | ||
# os.system("pip install -r " + os.path.join('requirements', 'pyopencl.txt')) | ||
|
||
setup( | ||
name='aydin', | ||
packages=['aydin'], | ||
use_scm_version=True, | ||
use_scm_version={"write_to": "aydin/_version.py"}, | ||
setup_requires=['setuptools_scm'], | ||
install_requires=INSTALL_REQUIRES, | ||
py_modules=['aydin'], | ||
entry_points=''' | ||
[console_scripts] | ||
aydin=aydin.cli.cli:aydin | ||
''', | ||
download_url='https://github.com/royerlab/aydin/archive/refs/tags/v0.1.6.tar.gz', | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'Programming Language :: Python :: 3.9', | ||
], | ||
entry_points={ | ||
'console_scripts': ['aydin=aydin.cli.cli:cli'] | ||
}, | ||
) |