This repository was archived by the owner on Jan 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
52 lines (49 loc) · 2.35 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
from distutils.core import setup
HTDOCS = "htdocs"
TEMPL = "templates"
STAT = "static"
TARGET = "idpproxy/metadata/files"
setup(
name='verify_entcat',
version='0.1',
url='',
#license='LICENSE.txt',
author='Roland Hedberg, Hans Hoerberg',
author_email='[email protected], [email protected]',
description='Op to Saml proxy based on the projects pyoidc and pysaml.',
install_requires=[
'pysaml2',
'mako'
],
license="Apache 2.0",
classifiers=[
"Development Status :: 0.1 - Beta",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Libraries :: Python Modules"
],
data_files=[
("%s" % HTDOCS, ["%s/check_result.mako" % HTDOCS,
"%s/test.mako" % HTDOCS]),
("%s" % STAT, ["%s/arrowDown.png" % STAT,
"%s/arrowLeft.png" % STAT,
"%s/arrowRight.png" % STAT,
"%s/arrowUp.png" % STAT,
"%s/jquery.min.1.9.1.js" % STAT,
"%s/jquery.tinysort.charorder.min.js" % STAT,
"%s/jquery.tinysort.min.js" % STAT,
"%s/loader.gif" % STAT,
"%s/robots.txt" % STAT,
"%s/style.css" % STAT,
"%s/SWAMID.png" % STAT]),
("%s/bootstrap/css/" % STAT, ["%s/bootstrap/css/bootstrap.css" % STAT,
"%s/bootstrap/css/bootstrap.min.css" % STAT,
"%s/bootstrap/css/bootstrap-theme.css" % STAT,
"%s/bootstrap/css/bootstrap-theme.min.css" % STAT]),
("%s/bootstrap/fonts/" % STAT, ["%s/bootstrap/fonts/glyphicons-halflings-regular.eot" % STAT,
"%s/bootstrap/fonts/glyphicons-halflings-regular.svg" % STAT,
"%s/bootstrap/fonts/glyphicons-halflings-regular.ttf" % STAT,
"%s/bootstrap/fonts/glyphicons-halflings-regular.woff" % STAT]),
("%s/bootstrap/js/" % STAT, ["%s/bootstrap/js/bootstrap.js" % STAT,
"%s/bootstrap/js/bootstrap.min.js" % STAT])
]
)