forked from sixfeetup/speak_friend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
76 lines (69 loc) · 1.8 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import os
from setuptools import setup, find_packages
version = '0.68'
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.txt')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
requires = [
'pyramid',
'pyramid_tm',
'pyramid_chameleon',
'waitress',
'passlib',
'py-bcrypt',
'colander',
'deform',
'python-openid',
'psycopg2',
'SQLAlchemy',
'transaction',
'zope.sqlalchemy',
'zope.interface',
'pyramid_exclog',
'mailinglogger',
'pyramid_mailer',
'requests',
'pyramid_beaker',
'pwgen',
'sixfeetup.bowab',
'pyramid_controlpanel',
'alembic',
]
testing_deps = [
'pytest',
'pytest-cov',
'coverage',
'testfixtures',
'mock',
]
tests_require = requires + testing_deps
setup(
name='speak_friend',
version=version,
description="An extensible OpenID server.",
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Programming Language :: Python",
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
author='Six Feet Up, Inc.',
author_email='info@sixfeetup.com',
url='http://www.sixfeetup.com',
keywords='web pyramid',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
tests_require=tests_require,
test_suite="nose.collector",
extras_require={'test': testing_deps},
entry_points="""\
[paste.app_factory]
main = speak_friend:main
[console_scripts]
create_test_users = speak_friend.scripts.createusers:main
initialize_speak_friend_db = speak_friend.scripts.initializedb:main
""",
)