forked from duosecurity/duo_python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 668 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 668 Bytes
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
from distutils.core import setup
setup(
name='duo_web',
version='1.3.0',
description='Duo Web SDK for two-factor authentication',
author='Duo Security, Inc.',
author_email='support@duosecurity.com',
url='https://github.com/duosecurity/duo_python',
packages=['duo_web'],
package_data={
'duo_web': ['js/*.js'],
},
data_files=[
('js', [
'js/Duo-Web-v2.js',
'js/Duo-Web-v2.min.js',
]),
],
license='BSD',
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: BSD License',
],
)