forked from danirus/django-comments-xtd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (51 loc) · 1.76 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
56
57
58
import sys
from setuptools import setup, find_packages
from setuptools.command.test import test
def run_tests(*args):
from django_comments_xtd.tests import run_tests
errors = run_tests()
if errors:
sys.exit(1)
else:
sys.exit(0)
test.run_tests = run_tests
setup(
name="django-comments-xtd",
version="2.1.0",
packages=find_packages(),
include_package_data=True,
license="MIT",
description=("Django Comments Framework extension app with thread "
"support, follow up notifications and email "
"confirmations."),
long_description=("A reusable Django app that extends django-contrib-"
"comments Framework with thread support, following up "
"notifications and comments that only hits the "
"database after users confirm them by email."),
author="Daniel Rus Morales",
author_email="mbox@danir.us",
maintainer="Daniel Rus Morales",
maintainer_email="mbox@danir.us",
url="http://pypi.python.org/pypi/django-comments-xtd",
install_requires=[
'Django>=1.8',
'django-contrib-comments>=1.8',
'djangorestframework>=3.6',
'docutils',
'six',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Framework :: Django',
'Natural Language :: English',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: News/Diary',
],
test_suite="dummy",
zip_safe=True
)