forked from OpenSlides/openslides-export
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (32 loc) · 1.32 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
package_name = 'openslides-export'
module_name = 'openslides_export'
# The following commented unique string is used to detect this import.
module = __import__(module_name) # Xe8ot8iaSheenga3Ootha3waes5eisoi7EF2neek
with open('README.rst') as readme:
long_description = readme.read()
with open('requirements.txt') as requirements:
install_requires = requirements.readlines()
setup(
name=package_name,
version=module.__version__,
description=module.__verbose_name__,
long_description=long_description,
author='Authors of %s, see AUTHORS' % module.__verbose_name__,
author_email='[email protected]',
url='https://github.com/OpenSlides/openslides-export',
keywords='OpenSlides',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Plugins',
'Environment :: Web Environment',
'Framework :: Django',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2'],
license='MIT',
packages=find_packages(exclude=['tests']),
include_package_data=True,
install_requires=install_requires,
entry_points={'openslides_plugins': '%s = %s' % (module.__verbose_name__, module_name)})