forked from equinor/everviz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (52 loc) · 1.89 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
#!/usr/bin/env python
from os import path
from setuptools import setup, find_packages
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="everviz",
packages=find_packages(exclude=["tests", "test-data"]),
package_data={"everviz": ["assets/axis_customization.css"]},
description="Visualization for Everest",
long_description=long_description,
long_description_content_type="text/markdown",
author="Software Innovation Bergen, Equinor ASA",
license="AGPL-3.0",
url="https://github.com/equinor/everviz",
setup_requires=["setuptools_scm"],
install_requires=[
"pyyaml",
"pandas",
"numpy",
"dash>=2.0",
"webviz-config>=0.2.0",
"plotly",
"flask",
],
test_suite="tests",
use_scm_version={"write_to": "everviz/version.py"},
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
entry_points={
"webviz_config_plugins": [
"Crossplot = everviz.plugins:Crossplot",
"CrossplotIndexed = everviz.plugins:CrossplotIndexed",
"SummaryPlot = everviz.plugins:SummaryPlot",
"ObjectivesPlot = everviz.plugins:ObjectivesPlot",
"SingleObjectivesPlot = everviz.plugins:SingleObjectivesPlot",
"ControlsPlot = everviz.plugins:ControlsPlot",
"BestControlsPlot = everviz.plugins:BestControlsPlot",
"DeltaPlot = everviz.plugins:DeltaPlot",
"GradientPlot = everviz.plugins:GradientPlot",
"ConfigEditor = everviz.plugins:ConfigEditor",
"WellsPlot = everviz.plugins:WellsPlot",
],
"everest": [
"everviz = everviz.everest_hooks",
],
},
)