forked from IdentityPython/pyFF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·59 lines (53 loc) · 1.46 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
53
54
55
56
57
58
59
#!/usr/bin/env python
from distutils.core import setup
from setuptools import find_packages
import sys, os
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
NEWS = open(os.path.join(here, 'NEWS.txt')).read()
version = '0.9.2dev'
install_requires = [
'lxml >=3.0',
'pyyaml >=3.10',
'eventlet >=0.9.16',
'pyXMLSecurity >=0.8',
'cherrypy >=3.2.0',
'iso8601 >=0.1.4',
'simplejson >=2.6.2',
'mako >=0.7.2',
'httplib2 >=0.7.7'
]
setup(name='pyFF',
version=version,
description="Federation Feeder",
long_description=README + '\n\n' + NEWS,
classifiers=[
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
],
keywords='identity federation saml metadata',
author='Leif Johansson',
author_email='[email protected]',
url='http://blogs.mnt.se',
license='BSD',
packages=find_packages('src'),
package_dir = {'': 'src'},
include_package_data=True,
package_data = {
'pyff': ['xslt/*.xsl',
'site/static/js/*.js',
'site/static/js/select2/*',
'site/static/css/*',
'site/templates/*',
'site/icons/*',
'site/static/bootstrap/js/*',
'site/static/bootstrap/css/*',
'site/static/bootstrap/img/*',
'schema/*.xsd']
},
zip_safe=False,
install_requires=install_requires,
entry_points={
'console_scripts':
['pyff=pyff:main','pyffd=pyff.mdx:main']
},
)