-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (36 loc) · 1.33 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
# -*- coding: utf-8 -*-
import os
import re
from setuptools import setup, find_packages
HERE = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(HERE, 'README.md'), encoding='utf-8') as f:
README = f.read()
with open(os.path.join(HERE, 'atd', '__init__.py'), encoding='utf-8') as fp:
VERSION = re.search("__version__ = '([^']+)'", fp.read()).group(1)
setup(
name='ATD',
version=VERSION,
description='Automated Process of Early Alert Deforestation',
long_description=README,
author='Xavier Corredor Llano, SMBYC-IDEAM',
author_email='xcorredorl@ideam.gov.co, smbyc@ideam.gov.co',
url='https://bitbucket.org/smbyc/atd',
license='GPLv3',
packages=find_packages(),
install_requires=['gdal',
'numpy',
'scipy',
'python-dateutil'],
scripts=['bin/atd'],
platforms=['Any'],
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering :: GIS",
"Intended Audience :: Science/Research",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)"],
)