-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
31 lines (27 loc) · 969 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
import sys
from setuptools import setup, find_packages
open_kwds = {}
if sys.version_info > (3,):
open_kwds['encoding'] = 'utf-8'
# with open('README.md', **open_kwds) as f:
# readme = f.read()
# long_description=readme,
setup(name='mltools',
version='1.0.9',
description='New example for pool detection with CNNs. Additional functionality for geojsons.',
classifiers=[],
keywords='',
author='Kostas Stamatiou',
author_email='[email protected]',
url='https://github.com/kostasthebarbarian/mltools',
license='MIT',
packages=find_packages(exclude=['docs']),
include_package_data=True,
zip_safe=False,
install_requires=['geojson >= 1.3.2',
'scikit-learn >= 0.17.1',
'Shapely >= 1.5.15',
'geoio >= 1.1.1',
'keras >= 1.0.2',
'bumpversion']
)