-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
32 lines (26 loc) · 949 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='CosmiQ_SN4_Baseline',
version='1.1.2',
description='SpaceNet 4 Baseline',
author='Nick Weir',
author_email='[email protected]',
license='APACHE 2',
packages=find_packages(),
include_package_data=True,
dependency_links=['https://github.com/SpaceNetChallenge/utilities/tarball/spacenetV3#egg=spacenetutilities-3.0'],
install_requires=['numpy', 'pandas', 'scikit-image',
'rasterio>=1.0.7', 'opencv-python',
'spacenetutilities', 'keras>=2.2.2',
'tensorflow>=1.10.0', 'tensorboard>=1.10.0',
'setuptools', 'shapely', 'geopandas'],
scripts=[
'bin/make_np_arrays.py',
'bin/train_model.py',
'bin/make_predictions.py'
],
package_data={
"": ['*.txt', '*.md', 'Dockerfile']
},
python_requires='>=3.6.5',
)