-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
39 lines (38 loc) · 1.32 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
from setuptools import setup, find_packages
setup(
name='pycda',
version='0.1.16',
description='Python Crater Detection Algorithm (PyCDA) is a pipeline for crater detection; go from image to annotated crater stats in minutes.',
url='https://github.com/AlliedToasters/PyCDA',
download_url='https://github.com/AlliedToasters/PyCDA/archive/0.1.16.tar.gz',
keywords = ['crater detection', 'astronomy', 'planetary science', 'planetary geology'],
author='Michael Klear',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
classifiers=[],
data_files = [
'pycda/models/tinynet.h5',
'pycda/models/unet.h5',
'pycda/models/classifier_12x12_2.h5',
'pycda/sample_imgs/holdout_tile_labels.csv',
'pycda/sample_imgs/holdout_tile.pgm',
'pycda/sample_imgs/rgb_sample.jpg',
'pycda/sample_imgs/mercury.png',
'pycda/sample_imgs/selection0.png',
'pycda/sample_imgs/selection2.png',
'pycda/sample_imgs/selection3.png',
'pycda/sample_imgs/selection4.png',
'pycda/sample_imgs/selection5.png'
],
include_package_data=True,
install_requires=[
'numpy',
'pandas',
'scikit-image',
'scikit-learn',
'h5py',
'tensorflow',
'Keras'
]
)