-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
34 lines (30 loc) · 989 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
28
29
30
31
32
33
34
#!/usr/bin/env python
from distutils.core import setup
version = '0.1'
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
]
setup(
name='django-metatags',
version=version,
url='http://github.com/cpharmston/django-metatags',
author='Chuck Harmston',
author_email='chuck@chuckharmston.com',
license='Dual-licensed under MIT and GPL',
packages=['metatags'],
package_dir={'metatags': 'metatags'},
description=(
'A simple, pluggable app for attaching meta tags to objects with their '
'own views.'
),
classifiers=classifiers,
)