-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
101 lines (95 loc) · 2.87 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# -*- coding: utf-8 -*-
#
# you can install this to a local test virtualenv like so:
# virtualenv venv
# ./venv/bin/pip install --editable .
# ./venv/bin/pip install --editable .[dev] # with dev requirements, too
import shdw
import glob
import setuptools
import sys
with open("README.md") as fd:
long_description = fd.read()
if sys.platform == "win32":
data_files = []
else:
data_files = []
included_packages = ["shdw"] + ["shdw." + p for p in setuptools.find_packages("shdw")]
setuptools.setup(
name="shdw",
version=shdw.__version__,
maintainer=shdw.__maintainer__,
maintainer_email=shdw.__email__,
author=shdw.__author__,
author_email=shdw.__email__,
license=shdw.__license__,
url="https://github.com/wbrandenburger/DataVisualization",
install_requires=[
# - python project packages -
"colorama>=0.4",
"click>=7.0.0",
"stevedore>=1.30",
"configparser>=3.0.0",
"pyyaml>=3.12",
"pandas",
# - python image processing packages -
"opencv-python",
"scikit-image",
"tifffile",
# - python numerical analysis packages -
"matplotlib",
"numpy",
"scipy",
"scikit-learn"
],
python_requires=">=3",
classifiers=[
"Development Status :: 1 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Utilities",
],
extras_require=dict(
# List additional groups of dependencies here (e.g. development
# dependencies). You can install these using the following syntax,
# for example:
# $ pip install -e .[develop]
optional=[
],
develop=[
]
),
description=(
"Visualization tool for exploring remote sensing data and view processing results"
),
long_description=long_description,
keywords=[
"visualization", "remote sensing", "images", "aerial", "satellite", "viewer", "explorer", "science", "research", "command-line", "tui"
],
package_data=dict(
shdw=[
],
),
data_files=data_files,
packages=included_packages,
entry_points={
"console_scripts": [
"shdw=shdw.commands.default:run",
],
"shdw.command": [
"run=shdw.commands.run:cli"
],
},
platforms=["linux", "osx", "windows"],
)