forked from wolfhechel/django-comments-xtd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (39 loc) · 1.56 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
import sys
from setuptools import setup, find_packages
from setuptools.command.test import test
def run_tests(*args):
import subprocess
errors = subprocess.Popen(["coverage", "run", "tests/runtests.py"]).wait()
if errors:
sys.exit(1)
else:
sys.exit(0)
test.run_tests = run_tests
setup(
name = "django-comments-xtd",
version = "1.4b2",
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 = "[email protected]",
maintainer = "Daniel Rus Morales",
maintainer_email = "[email protected]",
url = "http://pypi.python.org/pypi/django-comments-xtd",
classifiers = [
# 'Development Status :: 5 - Production/Stable',
'Development Status :: 4 - Beta',
'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",
)