forked from pmclanahan/django-celery-email
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
82 lines (70 loc) · 2.32 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
import codecs
import platform
try:
from setuptools import setup, find_packages, Command
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages, Command
import djcelery_email as distmeta
class RunTests(Command):
description = "Run the django test suite from the tests dir."
user_options = []
def run(self):
this_dir = os.getcwd()
testproj_dir = os.path.join(this_dir, "test_project")
sys.path.append(testproj_dir)
from django.core.management import execute_from_command_line
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")
os.chdir(testproj_dir)
execute_from_command_line([__file__, "test"])
os.chdir(this_dir)
def initialize_options(self):
pass
def finalize_options(self):
pass
if os.path.exists("README.rst"):
long_description = codecs.open("README.rst", "r", "utf-8").read()
else:
long_description = "See http://pypi.python.org/pypi/django-celery-email"
setup(
name='django-celery-email',
version=distmeta.__version__,
description=distmeta.__doc__,
author=distmeta.__author__,
author_email=distmeta.__contact__,
url=distmeta.__homepage__,
platforms=["any"],
license="BSD",
packages=find_packages(exclude=['ez_setup', 'test_project', 'test_project.*']),
scripts=[],
zip_safe=False,
install_requires=[
"django",
"celery>=2.3.0",
"django-appconf",
],
cmdclass = {"test": RunTests},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Topic :: Communications",
"Topic :: Communications :: Email",
"Topic :: System :: Distributed Computing",
"Topic :: Software Development :: Libraries :: Python Modules",
],
entry_points={},
long_description=long_description,
)