-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (38 loc) · 893 Bytes
/
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
from setuptools import setup, find_packages
requires = [
'alembic',
'boto',
'pyramid',
'pyramid_chameleon',
'pyramid_boto3',
'plaster_pastedeploy',
'pyramid-ipython',
'sqlalchemy',
'psycopg2',
'pyramid_tm',
'pyramid_storage',
'pyramid_default_cors',
'pyramid_debugtoolbar',
'transaction',
'waitress',
'zope.sqlalchemy'
]
setup(
name='wed-cam',
version='0.0',
description='Help the bride making a fantastic wedding album!',
author='Alvaro Munhoz Mota',
author_email='munhoz-alvaro@hotmail.com',
keywords='',
packages=find_packages(),
include_package_data=True,
install_requires=requires,
entry_points={
'paste.app_factory': [
'main = main_app:main',
],
'console_scripts': [
'initdb = main_app.scripts.initializedb:main',
],
}
)