-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
42 lines (38 loc) · 1.42 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
# -*- coding: utf-8 -*-
"""
@author: ciaran
"""
from setuptools import setup, find_packages
from setuptools.command.install import install
from io import open
import subprocess
descript = ('geospatial-learn is a Python module for using scikit-learn and'
'xgb models with geo-spatial data, chiefly raster and vector'
'formats.')
with open('README.rst', encoding='utf-8') as f:
long_description = f.read()
setup(
name="geospatial-learn",
version="0.3",
packages=find_packages(),
include_package_data=True,# {
# If any package contains *.txt or *.rst files, include them:
# And include any *.msg files found in the 'hello' package, too:
#},
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
# 'Programming Language :: Python :: 3.4',
# 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Utilities'],
# metadata for upload to PyPI
# zip_safe = True,
author="Ciaran Robb",
description=descript,
long_description=long_description,
license='GPLv3+',
url="https://github.com/Ciaran1981/geospatial-learn", # project home page, if any
download_url="https://github.com/Ciaran1981/geospatial-learn"
# could also include long_description, download_url, classifiers, etc.
)