forked from willhardy/django-seo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·38 lines (34 loc) · 1.12 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
#!/usr/bin/env python2.5
# -*- coding: UTF-8 -*-
try:
import ez_setup
ez_setup.use_setuptools()
except ImportError:
pass
from setuptools import setup, find_packages
setup(
name = "DjangoSEO",
version = '1.0',
packages = find_packages(exclude=["docs*", "regressiontests*"]),
namespace_packages = ['rollyourown'],
requires = ['django (>=1.1)'],
author = "Will Hardy",
author_email = "djangoseo@willhardy.com.au",
description = "A framework for managing SEO metadata in Django.",
long_description = open('README').read(),
license = "LICENSE",
keywords = "seo, django, framework",
url = "https://github.com/willhardy/django-seo",
include_package_data = True,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Programming Language :: Python",
"License :: OSI Approved :: Apache Software License",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Software Development"
],
)