forked from Quixotix/quix.django.contact
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (29 loc) · 1.07 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
import distribute_setup
distribute_setup.use_setuptools()
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
from quix.django.contact import get_version
setup(
name = "quix.django.contact",
version = get_version(),
description = "A simple contact form for Django websites.",
long_description = read("README.rst"),
author = "Micah Carrick",
author_email = "[email protected]",
url = "https://github.com/Quixotix/quix.django.contact",
packages = find_packages(),
namespace_packages = ["quix", "quix.django"],
py_modules = ['distribute_setup',],
license = "New BSD License",
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: BSD License",
],
)