forked from vladignatyev/django-tasks
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (25 loc) · 847 Bytes
/
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
#/usr/bin/env python
# coding: utf-8
from setuptools import setup, find_packages
setup(
name = "djangotasks",
description = "Long-running task queue for Django",
author = "Francois Granade",
author_email = "[email protected]",
url = "https://code.google.com/p/django-tasks/",
version = "0.51",
packages = find_packages(),
include_package_data = True,
zip_safe = False,
classifiers = [
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)