setup.py
changeset 47 df022d00a9c4
parent 45 9be85c3709da
child 55 7aaf4e89d06f
equal deleted inserted replaced
46:ed2dc23f7f99 47:df022d00a9c4
    23                     'docs')
    23                     'docs')
    24 
    24 
    25 README = os.path.join(DOCS, 'README.txt')
    25 README = os.path.join(DOCS, 'README.txt')
    26 HISTORY = os.path.join(DOCS, 'HISTORY.txt')
    26 HISTORY = os.path.join(DOCS, 'HISTORY.txt')
    27 
    27 
    28 version = '0.1.7'
    28 version = '0.1.8'
    29 long_description = open(README).read() + '\n\n' + open(HISTORY).read()
    29 long_description = open(README).read() + '\n\n' + open(HISTORY).read()
    30 
    30 
    31 tests_require = []
    31 tests_require = []
    32 
    32 
    33 setup(name='pyams_viewlet',
    33 setup(name='pyams_viewlet',
    34       version=version,
    34       version=version,
    35       description="PyAMS base viewlet interfaces and classes; z3c.viewlet package adapted to Pyramid",
    35       description="PyAMS viewlet interfaces and classes; z3c.viewlet package adapted to Pyramid",
    36       long_description=long_description,
    36       long_description=long_description,
    37       classifiers=[
    37       classifiers=[
    38           "License :: OSI Approved :: Zope Public License",
    38           "License :: OSI Approved :: Zope Public License",
    39           "Development Status :: 4 - Beta",
    39           "Development Status :: 4 - Beta",
    40           "Programming Language :: Python",
    40           "Programming Language :: Python",
    58       extras_require=dict(test=tests_require),
    58       extras_require=dict(test=tests_require),
    59       install_requires=[
    59       install_requires=[
    60           'setuptools',
    60           'setuptools',
    61           # -*- Extra requirements: -*-
    61           # -*- Extra requirements: -*-
    62           'chameleon',
    62           'chameleon',
       
    63           'pyams_template',
    63           'pyams_utils',
    64           'pyams_utils',
    64           'pyramid',
    65           'pyramid',
       
    66           'pyramid_zope_request',
       
    67           'venusian',
    65           'zope.component',
    68           'zope.component',
    66           'zope.configuration',
    69           'zope.configuration',
    67           'zope.contentprovider',
    70           'zope.contentprovider',
    68           'zope.interface',
    71           'zope.interface',
    69           'zope.location',
    72           'zope.location',