-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
executable file
·32 lines (30 loc) · 981 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
28
29
30
31
32
#! /usr/bin/env python
from setuptools import setup
setup(
name="dash-google-auth",
description="Dash Google Auth",
long_description=open('README.md', 'rt').read().strip(),
long_description_content_type='test/markdown',
author="Lucas Chapin", author_email='[email protected]',
url="https://github.com/lucaschapin/dash-google-auth",
license='MIT',
package='dash_google_auth',
packages=['dash_google_auth'],
install_requires=[
'dash>=0.26.5',
'dash-core-components>=0.28.3',
'dash-html-components>=0.12.0',
'Flask>=0.12.4',
'Flask-Dance>=0.14.0',
'six>=1.11.0',
],
setup_requires=['pytest-runner', 'setuptools_scm'],
tests_require=['pytest'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: Implementation :: CPython',
],
use_scm_version=True,
zip_safe=False,
)