forked from awesome-panel/awesome-panel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 890 Bytes
/
setup.py
File metadata and controls
28 lines (24 loc) · 890 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
26
27
28
"""Setup file. The package can be installed for development by running
pip install -e .
"""
import pathlib
from setuptools import find_packages, setup
README_FILE_PATH = pathlib.Path(__file__).parent / "README.md"
with open(README_FILE_PATH, encoding="utf8") as f:
README = f.read()
s = setup( # pylint: disable=invalid-name
name="awesome-panel",
version="20200512.1",
license="MIT",
description="""This package supports the Awesome Panel Project""",
long_description_content_type="text/markdown",
long_description=README,
url="https://github.com/MarcSkovMadsen/awesome-panel",
author="Marc Skov Madsen",
author_email="marc.skov.madsen@gmail.com",
include_package_data=True,
packages=find_packages(include=["awesome_panel", "awesome_panel.*"]),
install_requires=["panel>=0.12.6"],
python_requires=">= 3.7",
zip_safe=False,
)