-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
43 lines (41 loc) · 1.44 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
39
40
41
42
43
from setuptools import setup
import os
setup(
name='django-public-project',
version='0.7.5',
description='Custom CMS for making public projects, political processes or enquiry commission work more transparent',
author='Holger Drewes',
author_email='[email protected]',
url='https://github.com/holgerd77/django-public-project',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
packages=[
'public_project',
'public_project.management',
'public_project.management.commands',
'public_project.migrations',
'public_project.templatetags',
'public_project.utils',
'example_project',
'example_project.ep_setup_app',
'example_project.ep_setup_app.management',
'example_project.ep_setup_app.management.commands',
'example_project.example_project',
],
include_package_data=True,
install_requires=[
'Django>=1.10,<1.11',
'pdfminer==20110515',
'Pillow',
'django-tastypie>=0.13.3,<1.0',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Information Analysis',
],
)