-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (50 loc) · 1.47 KB
/
Copy pathsetup.py
File metadata and controls
57 lines (50 loc) · 1.47 KB
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
53
54
55
56
57
#! /usr/bin/env python
""" leafvis package configuration """
import leafvis
from setuptools import setup, find_packages
DISTNAME = 'leafvis'
DESCRIPTION = 'Image Visualization (using Leaflet.js)'
LONG_DESCRIPTION = """
A python based layer visualization library that leverages off the excellent
map visualization tool, leaflet.js.
"""
MAINTAINER = 'Nathan Faggian'
MAINTAINER_EMAIL = 'nathan.faggian@gmail.com'
URL = 'https://github.com/nfaggian/leafvis'
LICENSE = 'Apache License (2.0)'
DOWNLOAD_URL = 'https://github.com/nfaggian/leafvis.git'
VERSION = leafvis.__version__
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Topic :: Scientific/Engineering'
]
setup(
name=DISTNAME,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
url=URL,
license=LICENSE,
download_url=DOWNLOAD_URL,
version=VERSION,
classifiers=CLASSIFIERS,
packages=find_packages(),
package_data={'leafvis': ['colortables/*.cpt', 'templates/*.html']},
entry_points={'console_scripts': ['leafvis-server = leafvis.server:main']},
install_requires=[
'flask',
'requests',
'tables',
'numpy',
'joblib',
'pyproj',
'pyresample',
'tables'
],
zip_safe=False
)