setup.py
changeset 25 296bbb469ca4
parent 17 d56eef10d01a
child 31 2217a4d1dde9
equal deleted inserted replaced
24:c70908550e8f 25:296bbb469ca4
    20                     'docs')
    20                     'docs')
    21 
    21 
    22 README = os.path.join(DOCS, 'README.txt')
    22 README = os.path.join(DOCS, 'README.txt')
    23 HISTORY = os.path.join(DOCS, 'HISTORY.txt')
    23 HISTORY = os.path.join(DOCS, 'HISTORY.txt')
    24 
    24 
    25 version = '0.1.2'
    25 version = '0.1.3'
    26 long_description = open(README).read() + '\n\n' + open(HISTORY).read()
    26 long_description = open(README).read() + '\n\n' + open(HISTORY).read()
    27 
    27 
    28 tests_require = []
    28 tests_require = []
    29 
    29 
    30 setup(name='pyams_alchemy',
    30 setup(name='pyams_alchemy',
    54       tests_require=tests_require,
    54       tests_require=tests_require,
    55       extras_require=dict(test=tests_require),
    55       extras_require=dict(test=tests_require),
    56       install_requires=[
    56       install_requires=[
    57           'setuptools',
    57           'setuptools',
    58           # -*- Extra requirements: -*-
    58           # -*- Extra requirements: -*-
       
    59           'pyams_utils',
    59           'pyramid',
    60           'pyramid',
    60           'sqlalchemy',
    61           'sqlalchemy',
    61           'zope.component',
    62           'zope.component',
       
    63           'zope.componentvocabulary',
       
    64           'zope.container',
    62           'zope.interface',
    65           'zope.interface',
       
    66           'zope.lifecycleevent',
       
    67           'zope.schema',
       
    68           'zope.sqlalchemy',
    63       ],
    69       ],
    64       entry_points="""
    70       entry_points="""
    65       # -*- Entry points: -*-
    71       # -*- Entry points: -*-
    66       """,
    72       """,
    67       )
    73       )