-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 771 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 771 Bytes
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
import io
from setuptools import setup
main_ns = {}
exec(open("dash_testing_stub/_version.py", encoding="utf-8").read(), main_ns)
setup(
name="dash-testing-stub",
version=main_ns["__version__"],
author="Philippe Duval",
author_email="[email protected]",
license="MIT",
description="Package installed with dash[testing] for optional loading of pytest dash plugin.",
long_description=io.open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://plotly.com/dash",
packages=["dash_testing_stub"],
classifiers=[
"Environment :: Web Environment",
"Framework :: Dash",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
]
)