setup.py
changeset 206 0e48f5a82d32
parent 200 36542eceb7c4
child 210 821b37b156ac
equal deleted inserted replaced
205:975adcb82113 206:0e48f5a82d32
     9 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
     9 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
    10 # FOR A PARTICULAR PURPOSE.
    10 # FOR A PARTICULAR PURPOSE.
    11 #
    11 #
    12 
    12 
    13 """
    13 """
    14 This module contains pyams_ package
    14 This module contains pyams_form package
    15 """
    15 """
    16 import os
    16 import os
    17 
    17 
    18 from setuptools import find_packages, setup
    18 from setuptools import find_packages, setup
    19 
    19 
    22                     'docs')
    22                     'docs')
    23 
    23 
    24 README = os.path.join(DOCS, 'README.txt')
    24 README = os.path.join(DOCS, 'README.txt')
    25 HISTORY = os.path.join(DOCS, 'HISTORY.txt')
    25 HISTORY = os.path.join(DOCS, 'HISTORY.txt')
    26 
    26 
    27 version = '0.1.26.1'
    27 version = '0.1.27'
    28 long_description = open(README).read() + '\n\n' + open(HISTORY).read()
    28 long_description = open(README).read() + '\n\n' + open(HISTORY).read()
    29 
    29 
    30 tests_require = []
    30 tests_require = []
    31 
    31 
    32 setup(name='pyams_form',
    32 setup(name='pyams_form',
    56       tests_require=tests_require,
    56       tests_require=tests_require,
    57       extras_require=dict(test=tests_require),
    57       extras_require=dict(test=tests_require),
    58       install_requires=[
    58       install_requires=[
    59           'setuptools',
    59           'setuptools',
    60           # -*- Extra requirements: -*-
    60           # -*- Extra requirements: -*-
       
    61           'persistent',
    61           'pyams_i18n',
    62           'pyams_i18n',
    62           'pyams_pagelet',
    63           'pyams_pagelet',
    63           'pyams_skin',
    64           'pyams_skin',
    64           'pyams_template',
    65           'pyams_template',
    65           'pyams_utils',
    66           'pyams_utils',
    66           'pyams_viewlet',
    67           'pyams_viewlet',
    67           'pyramid',
    68           'pyramid',
    68           'pyramid_chameleon',
    69           'pyramid_chameleon',
    69           'pyramid_zope_request',
    70           'pyramid_zope_request',
    70           'z3c.form >= 3.4.0',
    71           'transaction',
       
    72           'venusian',
       
    73           'z3c.form >= 4.1.0',
    71           'z3c.table',
    74           'z3c.table',
    72           'zope.component',
    75           'zope.component',
    73           'zope.interface',
    76           'zope.interface',
    74           'zope.lifecycleevent',
    77           'zope.lifecycleevent',
    75           'zope.location',
    78           'zope.location',