assume all .pt are compiled

This commit is contained in:
Gael Pasgrimaud
2011-02-23 21:39:42 +01:00
parent f2d518ceb6
commit f1ac29fd71
24 changed files with 2272 additions and 104 deletions
+4 -4
View File
@@ -6,11 +6,11 @@ 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>=1.0', 'WebError', 'FormAlchemy']
requires = ['pyramid>=1.0', 'WebError', 'FormAlchemy>=1.3.5']
setup(name='pyramid_formalchemy',
version='0.0',
description='pyramid_formalchemy',
version='0.1',
description='FormAlchemy plugins and helpers for Pyramid',
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Programming Language :: Python",
@@ -20,7 +20,7 @@ setup(name='pyramid_formalchemy',
],
author='Gael Pasgrimaud',
author_email='gael@gawel.org',
url='',
url='http://docs.formalchemy.org/pyramid_formalchemy/',
keywords='web pyramid pylons formalchemy',
packages=find_packages(exclude=['pyramidapp']),
include_package_data=True,