save point (see note)

Added Pyramid 1.3 scaffold, more fleshing out of edbob.pyramid generally,
improved commands and initialization.
This commit is contained in:
Lance Edgar 2012-03-23 19:42:56 -05:00
parent a6decbb313
commit 7c2e7cfb09
32 changed files with 3073 additions and 98 deletions

View file

@ -34,7 +34,7 @@ import os.path
from setuptools import setup, find_packages
here = os.path.dirname(__file__)
here = os.path.abspath(os.path.dirname(__file__))
execfile(os.path.join(here, 'edbob', '_version.py'))
readme = open(os.path.join(here, 'README.txt')).read()
@ -97,28 +97,35 @@ setup(
'pytz', # 2012b
],
# extras_require = {
# #
# # Same guidelines apply to the extra dependencies:
extras_require = {
#
# Same guidelines apply to the extra dependencies:
# 'db': [
# #
# # package # low high
# #
# 'SQLAlchemy', # 0.6.7
# 'sqlalchemy-migrate', # 0.6.1
# ],
# 'db': [
# #
# # package # low high
# #
# 'SQLAlchemy', # 0.6.7
# 'sqlalchemy-migrate', # 0.6.1
# ],
# 'pyramid': [
# #
# # package # low high
# #
'docs': [
#
# package # low high
#
'Sphinx', # 1.1.3
],
'pyramid': [
#
# package # low high
#
# # Pyramid 1.3 introduced 'pcreate' command (and friends) to replace
# # deprecated 'paster create' (and friends).
# 'pyramid>=1.3a1', # 1.3b2
# ],
# },
# Pyramid 1.3 introduced 'pcreate' command (and friends) to replace
# deprecated 'paster create' (and friends).
'pyramid>=1.3a1', # 1.3b2
],
},
packages = find_packages(),
include_package_data = True,
@ -132,6 +139,9 @@ edbob = edbob.commands:main
[gui_scripts]
edbobw = edbob.commands:main
[pyramid.scaffold]
edbob = edbob.pyramid.scaffolds:Template
[edbob.commands]
shell = edbob.commands:ShellCommand
uuid = edbob.commands:UuidCommand