-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
27 lines (26 loc) · 838 Bytes
/
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
import io
from setuptools import setup, find_packages
setup(
name="magic_dash",
version="0.2.8",
author_email="[email protected]",
homepage="https://github.com/CNFeffery/magic-dash",
author="CNFeffery <[email protected]>",
packages=find_packages(),
license="MIT",
description="A command-line tool for quickly generating standard Dash application projects.",
long_description=io.open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
classifiers=[
"Framework :: Dash",
],
url="https://github.com/CNFeffery/magic-dash",
python_requires=">=3.9, <3.13",
install_requires=["click"],
entry_points={
"console_scripts": [
"magic-dash = magic_dash:magic_dash",
],
},
include_package_data=True,
)