setup.py
author durandn
Mon, 13 Apr 2015 17:33:32 +0200
changeset 97 fe8782a67fcf
parent 40 8c32ea41b391
permissions -rw-r--r--
cache optimisation : no more cache.clear() but 2 "keys sets" for each repository: one for the categories and one for the comments and discussion + corrected slight mistake in macro that messed up with sessions

from setuptools import setup, find_packages

# Will set CURRENT_VERSION to the current version string and VERSION to the
# current version tuple
exec(compile(open("src/catedit/version.py").read(), "version.py", "exec"))

setup(
    name='catedit',
    version=CURRENT_VERSION,
    url='http://www.iri.centrepompidou.fr',
    author='I.R.I.',
    author_email='dev@iri.centrepompidou.fr',
    description='Category editor',
    license='CECILL-B',
    packages=find_packages('src'),
    package_dir={'catedit':'src/catedit'},
    include_package_data=True,
#    scripts=['src/catedit/bin/manage.py'],
    zip_safe=False,
    classifiers=[
        'Development Status :: 3 - Alpha',
        'Environment :: Web Environment',
        'Framework :: Flask',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: BSD License',
        'Operating System :: OS Independent',
        'Programming Language :: Python',
        'Programming Language :: Python :: 3',
        'Programming Language :: Python :: 3.4',
        'Topic :: Internet :: WWW/HTTP',
    ],
)