forked from plotly/dash-labs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (39 loc) · 1.42 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
from setuptools import setup, find_packages
import os
from pathlib import Path
here = Path(os.path.dirname(os.path.abspath(__file__)))
main_ns = {}
with (here / "dash_labs" / "version.py").open() as f:
exec(f.read(), main_ns) # pylint: disable=exec-used
def requirements_txt():
with open(here / "requirements.txt", "rt") as f:
return [line.strip() for line in f.read().split("\n")]
def readme():
with open(here / "README.md", "rt") as f:
return f.read()
setup(
name="dash-labs",
version=main_ns["__version__"],
author="Chris Parmer",
author_email="[email protected]",
maintainer="Chris Parmer",
maintainer_email="[email protected]",
url="https://github.com/plotly/dash-labs",
project_urls={"Github": "https://github.com/plotly/dash-labs"},
description="Experimental enhancements for potential inclusion in Dash",
long_description=readme(),
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Visualization",
"Framework :: Dash",
],
license="MIT",
license_files=["LICENSE.txt"],
python_requires=">=3.6.*",
packages=find_packages(exclude=["tests", "tests.*"]),
)