-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
58 lines (54 loc) · 1.65 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
def _read(file_name):
sock = open(file_name)
text = sock.read()
sock.close()
return text
setup(
name='pyramid_simpleauth',
version='0.10.1',
description='Session based authentication and role based security \
for a Pyramid web application.',
author='James Arthur',
author_email='username: thruflo, domain: gmail.com',
url='http://github.com/thruflo/pyramid_simpleauth',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: Public Domain',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Framework :: Pylons',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Software Development :: Libraries :: Python Modules',
],
license=_read('UNLICENSE').split('\n')[0],
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
install_requires=[
'pyramid_basemodel',
'pyramid_simpleform',
'pyramid',
'pyramid_mako',
'SQLAlchemy',
'formencode',
'passlib',
'nose',
'mock',
'paste',
'webtest',
'pyDNS',
'dnspython',
]
)