-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
45 lines (41 loc) · 1.21 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# author: alisue
# date: 2011/03/22
#
from setuptools import setup, find_packages
version = "0.1.7"
def read(filename):
import os.path
return open(os.path.join(os.path.dirname(__file__), filename)).read()
setup(
name="django-universaltag",
version=version,
description = "Universal tagging library for Django",
long_description=read('README.rst'),
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
keywords = "django tagging universal tag",
author = "Alisue",
author_email = "[email protected]",
url=r"https://github.com/lambdalisue/django-universaltag",
download_url = r"https://github.com/lambdalisue/django-universaltag/tarball/master",
license = 'MIT',
packages = find_packages(exclude=['tests']),
include_package_data = True,
zip_safe=False,
install_requires=[
'distribute',
'setuptools-git',
'django>=1.2',
'django-piston>=0.2.2',
],
tests_require = [
],
test_suite = 'runtests.runtests',
)