-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
executable file
·32 lines (30 loc) · 986 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-okta-auth",
description="Dash Okta Auth",
long_description=open('README.md', 'rt').read().strip(),
long_description_content_type='text/markdown',
author="Frank Spijkerman", author_email='[email protected]',
url="https://github.com/fspijkerman/dash-okta-auth",
license='MIT',
package='dash_okta_auth',
packages=['dash_okta_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,
)