-
Notifications
You must be signed in to change notification settings - Fork 2
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
Showing
7 changed files
with
65 additions
and
26 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
recursive-include models *.h5 *.json |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/usr/bin/env pythonw | ||
import os | ||
import argparse | ||
|
||
from src.crystal_processing.process_image_folder import process_image_folder | ||
|
||
# Setup parser | ||
ap = argparse.ArgumentParser() | ||
ap.add_argument("directory", default=os.getcwd(), help="Path of the directory") | ||
|
||
args = ap.parse_args() | ||
|
||
process_image_folder(args.directory) |
This file was deleted.
Oops, something went wrong.
Empty file.
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
from setuptools import setup, find_packages | ||
|
||
with open("README.md", "r") as f: | ||
long_description = f.read() | ||
|
||
setup(name='crystalml', | ||
version='0.0.1', | ||
description='Integrated tool to measure the nucleation rate of protein crystals. ', | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url='https://github.com/hlgirard/CrystalML', | ||
author='Henri-Louis Girard', | ||
author_email='[email protected]', | ||
license='GPLv3', | ||
packages=find_packages(exclude=['tests']), | ||
install_requires=[ | ||
'tensorflow', | ||
'matplotlib', | ||
'numpy', | ||
'opencv-python', | ||
'pandas', | ||
'pillow', | ||
'plotly', | ||
'scikit-image', | ||
'setuptools', | ||
'scipy', | ||
'seaborn', | ||
'tensorboard' | ||
|
||
], | ||
scripts=[ | ||
'bin/crystalml', | ||
], | ||
zip_safe=False, | ||
include_package_data=True) |
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