forked from danirus/django-comments-xtd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 1.23 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
from setuptools import setup, find_packages
from setuptools.command.test import test
def run_tests(*args):
import subprocess
subprocess.Popen(["python", "tests/runtests.py"]).wait()
test.run_tests = run_tests
setup(
name = "django-comments-xtd",
version = "1.0a5",
packages = find_packages(),
include_package_data = True,
license = "MIT",
description = "Django Comments Framework extension app with follow up notifications and email confirmations",
long_description = "A reusable Django app that extends the built-in Django's Comments Framework with following up notifications and comments that only hits the database after users confirm them by email.",
author = "Daniel Rus Morales",
author_email = "inbox@danir.us",
maintainer = "Daniel Rus Morales",
maintainer_email = "inbox@danir.us",
url = "http://pypi.python.org/pypi/django-comments-xtd",
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
test_suite = "dummy",
)