setup.py
author Nicolas DURAND <nicolas.durand@iri.centrepompidou.fr>
Tue, 13 Jan 2015 10:43:26 +0100
changeset 39 67d2ddbebf7e
parent 38 d1bc73ce855a
child 40 8c32ea41b391
permissions -rw-r--r--
Quick fix previous commit (syntax error)

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"), "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',
    ],
)