-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
39 lines (36 loc) · 1.35 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
LONG_DESCRIPTION = fh.read()
TESTS_REQUIRE = ["selenium~=3.141", "pylint", "mock", "black", "bandit"]
setup(
name="webviz_plugin_boilerplate",
description="Webviz plugin boilerplate with example plugins",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
packages=find_packages(exclude=["tests"]),
entry_points={
"webviz_config_plugins": [
"SomeCustomPlugin = webviz_plugin_boilerplate.plugins:SomeCustomPlugin",
"SomeOtherCustomPlugin = webviz_plugin_boilerplate.plugins:SomeOtherCustomPlugin",
"BestPracticePlugin = webviz_plugin_boilerplate.plugins:BestPracticePlugin",
"WlfBestPracticePlugin = webviz_plugin_boilerplate.plugins:WlfBestPracticePlugin",
]
},
install_requires=[
"webviz-config>=0.1.0",
],
tests_require=TESTS_REQUIRE,
extras_require={"tests": TESTS_REQUIRE},
setup_requires=["setuptools_scm~=3.2"],
python_requires="~=3.8",
use_scm_version=True,
zip_safe=False,
classifiers=[
"Natural Language :: English",
"Environment :: Web Environment",
"Framework :: Dash",
"Framework :: Flask",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
)