-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (27 loc) · 951 Bytes
/
setup.py
File metadata and controls
38 lines (27 loc) · 951 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
27
28
29
30
31
32
33
34
35
36
37
from setuptools import setup, find_packages
setup(
name='keystone_securepass',
version='1.1',
description='SecurePass Keystone driver for OpenStack',
author='Giuseppe Paterno',
author_email='gpaterno@garl.ch',
url='https://github.com/garlsecurity/keystone-securepass',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
],
platforms=['Any'],
scripts=[],
packages=find_packages(),
include_package_data=True,
entry_points={
'keystone.identity': [
'securepass = keystone_securepass.securepass:Identity',
],
},
zip_safe=False,
)