OpenSlides/setup.py

57 lines
1.5 KiB
Python
Raw Normal View History

2012-04-25 22:29:19 +02:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Setup script for OpenSlides.
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""
2012-02-09 16:57:10 +01:00
from setuptools import setup
from setuptools import find_packages
from openslides import get_version
with open('README.txt') as file:
long_description = file.read()
2012-02-09 16:57:10 +01:00
setup(
name='openslides',
2012-12-10 22:36:37 +01:00
description='Presentation and assembly system',
long_description=long_description,
2012-02-09 16:57:10 +01:00
version=get_version(),
url='http://openslides.org',
author='OpenSlides-Team',
author_email='support@openslides.org',
license='GPL2+',
packages=find_packages(exclude=['tests']),
2012-02-09 16:57:10 +01:00
include_package_data = True,
classifiers = [
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Other Audience',
'Framework :: Django',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
setup_requires=[
'versiontools >= 1.6',
],
install_requires=[
'django >= 1.5',
'django-mptt',
2012-02-09 16:57:10 +01:00
'reportlab',
2013-02-28 11:29:17 +01:00
'pillow',
'tornado',
'bleach',
'beautifulsoup4',
],
entry_points={
'console_scripts': [
'openslides = openslides.main:main',
],
},
2012-02-09 16:57:10 +01:00
)