-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·55 lines (52 loc) · 1.71 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
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.rst') as readme_file:
readme = readme_file.read()
setup(
name="serviceform",
version='0.9.11',
description="Django web application to collect volunteering willingness "
"data and report to responsible people",
long_description=readme,
author="Tuomas Airaksinen",
author_email="tuomas.airaksinen@gmail.com",
url="https://github.com/tuomas2/serviceform",
keywords='django, church, volunteering, recruiting, reporting',
packages=['serviceform.'+i for i in find_packages('serviceform')],
include_package_data=True,
install_requires=[
"Django",
"django-libsass",
"psycopg2",
"django-nested-admin",
"django-crispy-forms",
"django-colorful",
"colour",
"django-redis-cache",
"django-compressor",
"django-guardian",
"django-select2-forms",
"raven",
],
extras_require={
'cachalot': ['django-cachalot'],
'grappelli': ['django-grappelli'],
'celery': ['django-celery', 'celery'],
},
license="GPL",
zip_safe=False,
classifiers=[
'Natural Language :: English',
'Natural Language :: Finnish',
'Framework :: Django',
'Intended Audience :: Religion',
'Intended Audience :: Education',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Environment :: Web Environment',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
],
)