-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
100 lines (94 loc) · 2.86 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
# -*- 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 dl_multi
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 = ["dl_multi"] + ["dl_multi." + p for p in setuptools.find_packages("dl_multi")]
setuptools.setup(
name="dl_multi",
version=dl_multi.__version__,
maintainer=dl_multi.__maintainer__,
maintainer_email=dl_multi.__email__,
author=dl_multi.__author__,
author_email=dl_multi.__email__,
license=dl_multi.__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",
# - optional packages -
"h5py",
"eventlet",
"flask-socketio",
"seaborn",
"ffmpeg",
# imageio=2.1.2
"moviepy"
],
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(
dl_multi=[
],
),
data_files=data_files,
packages=included_packages,
entry_points={
"console_scripts": [
"dl_multi=dl_multi.commands.default:run",
],
"dl_multi.command": [
"run=dl_multi.commands.run:cli"
],
},
platforms=["linux", "osx", "windows"],
)