setup.py
changeset 11 09387489ec24
parent 1 b394108019cd
child 17 dfb0c634ee79
equal deleted inserted replaced
10:7dea2cd0fa8a 11:09387489ec24
    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.0'
    25 version = '0.1.1'
    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_notify',
    30 setup(name='pyams_notify',
    36           "Development Status :: 4 - Beta",
    36           "Development Status :: 4 - Beta",
    37           "Programming Language :: Python",
    37           "Programming Language :: Python",
    38           "Framework :: Pyramid",
    38           "Framework :: Pyramid",
    39           "Topic :: Software Development :: Libraries :: Python Modules",
    39           "Topic :: Software Development :: Libraries :: Python Modules",
    40       ],
    40       ],
    41       keywords='Pyramid PyAMS',
    41       keywords='Pyramid PyAMS notifications',
    42       author='Thierry Florac',
    42       author='Thierry Florac',
    43       author_email='tflorac@ulthar.net',
    43       author_email='tflorac@ulthar.net',
    44       url='http://hg.ztfy.org/pyams/pyams_notify',
    44       url='http://hg.ztfy.org/pyams/pyams_notify',
    45       license='ZPL',
    45       license='ZPL',
    46       packages=find_packages('src'),
    46       packages=find_packages('src'),
    56       extras_require=dict(test=tests_require),
    56       extras_require=dict(test=tests_require),
    57       install_requires=[
    57       install_requires=[
    58           'setuptools',
    58           'setuptools',
    59           # -*- Extra requirements: -*-
    59           # -*- Extra requirements: -*-
    60           'fanstatic',
    60           'fanstatic',
       
    61           'pyams_cache',
    61           'pyams_i18n',
    62           'pyams_i18n',
    62           'pyams_security',
    63           'pyams_security',
    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           'pyams_workflow',
    68           'pyams_workflow',
    68           'pylibmc',
       
    69           'pyramid',
    69           'pyramid',
    70           'transaction',
    70           'transaction',
    71           'ws4py',
    71           'ws4py',
    72           'zope.interface',
    72           'zope.interface',
    73           'zope.schema'
    73           'zope.schema'