2012-04-25 22:29:19 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2014-03-28 19:38:42 +01:00
|
|
|
import re
|
2014-03-27 22:57:13 +01:00
|
|
|
import sys
|
2013-11-25 19:41:06 +01:00
|
|
|
|
2013-05-16 20:35:51 +02:00
|
|
|
from setuptools import setup, find_packages
|
2013-11-17 15:33:07 +01:00
|
|
|
|
2012-02-09 16:57:10 +01:00
|
|
|
from openslides import get_version
|
|
|
|
|
2012-08-04 20:59:27 +02:00
|
|
|
|
2013-10-20 02:04:27 +02:00
|
|
|
with open('README.rst') as readme:
|
2013-04-25 13:10:50 +02:00
|
|
|
long_description = readme.read()
|
|
|
|
|
2012-11-25 00:28:41 +01:00
|
|
|
|
2013-05-16 20:35:51 +02:00
|
|
|
with open('requirements_production.txt') as requirements_production:
|
2014-04-28 22:32:58 +02:00
|
|
|
install_requires = requirements_production.readlines()
|
2013-05-16 20:35:51 +02:00
|
|
|
|
|
|
|
|
2012-02-09 16:57:10 +01:00
|
|
|
setup(
|
|
|
|
name='openslides',
|
|
|
|
version=get_version(),
|
|
|
|
author='OpenSlides-Team',
|
|
|
|
author_email='support@openslides.org',
|
2013-05-16 20:35:51 +02:00
|
|
|
url='http://openslides.org',
|
|
|
|
description='Presentation and assembly system',
|
|
|
|
long_description=long_description,
|
|
|
|
classifiers=[
|
2012-02-09 16:57:10 +01:00
|
|
|
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
|
|
|
|
'Development Status :: 5 - Production/Stable',
|
|
|
|
'Environment :: Web Environment',
|
|
|
|
'Framework :: Django',
|
2013-10-31 10:01:19 +01:00
|
|
|
'License :: OSI Approved :: MIT License',
|
2012-02-09 16:57:10 +01:00
|
|
|
'Operating System :: OS Independent',
|
2014-08-16 09:25:18 +02:00
|
|
|
'Programming Language :: Python :: 3',
|
2012-02-09 16:57:10 +01:00
|
|
|
],
|
2013-10-31 10:01:19 +01:00
|
|
|
license='MIT',
|
2013-05-16 20:35:51 +02:00
|
|
|
packages=find_packages(exclude=['tests', 'tests.*']),
|
2013-05-17 01:17:07 +02:00
|
|
|
include_package_data=True,
|
2013-05-16 20:35:51 +02:00
|
|
|
install_requires=install_requires,
|
2013-09-08 14:30:26 +02:00
|
|
|
entry_points={'console_scripts': ['openslides = openslides.__main__:main']})
|