UNPKG

735 BPlain TextView Raw
1from setuptools import setup
2
3exec (open('grasia_dash_components/version.py').read())
4
5with open('long_description.md') as f:
6 long_description = f.read()
7
8setup(
9 name='grasia_dash_components',
10 version=__version__,
11 author="Abel 'Akronix' Serrano Juste",
12 author_email='akronix5@gmail.com',
13 packages=['grasia_dash_components'],
14 keywords='dash react-components grasia',
15 include_package_data=True,
16 license='MIT',
17 description='Extended dash UI component suite for @GRASIA.',
18 long_description=long_description,
19 long_description_content_type='text/markdown',
20 url='https://github.com/Grasia/grasia-dash-components',
21 python_requires='>=3',
22 install_requires=['dash', 'dash-renderer']
23)