-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 1.04 KB
/
setup.py
File metadata and controls
28 lines (27 loc) · 1.04 KB
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
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='better-dash-callback',
version='0.1.5',
description='Runs clientside callback functions in Dash applications using Python syntax, eliminating the need for inline JavaScript.',
author='Richard Barella Jr.',
author_email='codingwithricky@gmail.com',
url='https://github.com/ribab/better-dash-callback',
packages=find_packages(exclude=['tests', 'examples']),
install_requires=[
'dash>=2.0.0',
'javascripthon==0.13'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
],
include_package_data=True,
long_description=long_description,
long_description_content_type='text/markdown'
)