OpenSlides/setup.py

41 lines
1.4 KiB
Python
Raw Normal View History

2012-04-25 22:29:19 +02:00
#!/usr/bin/env python
from setuptools import find_packages, setup
2012-02-09 16:57:10 +01:00
from openslides import __author__ as openslides_author
from openslides import __description__ as openslides_description
from openslides import __version__ as openslides_version
with open('README.rst') as readme:
2013-04-25 13:10:50 +02:00
long_description = readme.read()
with open('requirements_production.txt') as requirements_production:
install_requires = requirements_production.readlines()
2012-02-09 16:57:10 +01:00
setup(
name='openslides',
author=openslides_author,
2012-02-09 16:57:10 +01:00
author_email='support@openslides.org',
description=openslides_description,
license='MIT',
long_description=long_description,
url='http://openslides.org',
version=openslides_version,
classifiers=[
2012-02-09 16:57:10 +01:00
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
2015-12-07 20:21:42 +01:00
# 'Development Status :: 3 - Alpha',
'Development Status :: 4 - Beta',
# 'Development Status :: 5 - Production/Stable',
2012-02-09 16:57:10 +01:00
'Environment :: Web Environment',
'Framework :: Django',
'License :: OSI Approved :: MIT License',
2012-02-09 16:57:10 +01:00
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.3',
2015-12-07 20:21:42 +01:00
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5', ],
packages=find_packages(exclude=['tests', 'tests.*']),
2013-05-17 01:17:07 +02:00
include_package_data=True,
install_requires=install_requires,
entry_points={'console_scripts': ['openslides = openslides.__main__:main']})