-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
52 lines (49 loc) · 1.5 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
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
HERE = os.path.abspath(os.path.dirname(__file__))
setup(
name='geolabel_maker',
keywords=[
"geospatial artificial intelligence",
"deep learning",
"convolutional neural networks",
"image",
"ground truth"
],
version=open(os.path.join(HERE, "geolabel_maker", "VERSION.md")).read().strip(),
packages=find_packages(),
author="Makina Corpus",
author_email="[email protected]",
maintainer="Makina Corpus",
description="Data preparation for geospatial artificial intelligence",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
include_package_data=True,
url='https://github.com/makinacorpus/geolabel-maker/',
classifiers=[
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
entry_points={
"console_scripts": [
"geolabels = geolabel_maker.geolabels:main.start",
]
},
python_requires='>=3.6',
install_requires=[
'begins',
'numpy',
'gdal2tiles',
'geopandas',
'rasterio',
'matplotlib',
'scikit-image',
],
)