forked from ecometrica/django-vinaigrette
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 1.09 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 os
from setuptools import setup, find_packages
description = "Translate Django model data using gettext"
cur_dir = os.path.dirname(__file__)
try:
long_description = open(os.path.join(cur_dir, 'README.rst')).read()
except:
long_description = description
setup(
name = "django-vinaigrette",
version = "0.1.1",
packages = find_packages(),
description = description,
author = "Ecometrica",
author_email = "info@ecometrica.ca",
maintainer = "Michael Mulley",
maintainer_email = "michael@michaelmulley.com",
url = "http://github.com/ecometrica/django-vinaigrette/",
keywords = ["django", "translation", "gettext",
"internationalization", "i18n", "database", "model"],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Topic :: Software Development :: Internationalization",
"Framework :: Django",
],
long_description = long_description,
)