-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (41 loc) · 1.22 KB
/
setup.py
File metadata and controls
49 lines (41 loc) · 1.22 KB
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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
install_requires = [
'pyramid>=1.3',
'SQLAlchemy',
'sqlalchemy-migrate',
'zope.sqlalchemy'
]
tests_require = [
'coverage'
]
setup_requires = [
'nose'
]
dependency_links = []
setup(name='pyramid_sqlalchemy',
version='0.1',
description='Simple SQLAlchemy boilerplate reduction for Pyramid',
long_description='Simple SQLAlchemy boilerplate reduction for Pyramid',
classifiers=[],
author='Kiall Mac Innes',
author_email='[email protected]',
url='https://github.com/managedit/pyramid_sqlalchemy',
license="BSD",
keywords='pylons pyramid sqlalchemy orm migrate migrations database',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
dependency_links=dependency_links,
install_requires=install_requires,
tests_require=tests_require,
test_suite='pyramid_sqlalchemy.tests',
setup_requires=setup_requires,
entry_points="""\
[console_scripts]
pdbinit = pyramid_sqlalchemy.scripts:init_db
pdbmigrate = pyramid_sqlalchemy.scripts:migrate_db
"""
)