forked from KristianOellegaard/django-hvad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (35 loc) · 1.2 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
from setuptools import setup, find_packages
from hvad import __version__ as version
setup(
name = 'django-hvad',
version = version,
description = 'A translations framework for django integrated automatically in the normal ORM. Removes the pain of having to think about translations in a django project.',
author = 'Kristian Ollegaard',
author_email = '[email protected]',
url = 'https://github.com/KristianOellegaard/django-hvad',
packages = find_packages(
exclude = [
'testproject',
'testproject.app',
'nani.tests',
'hvad.tests',
],
),
zip_safe=False,
include_package_data = True,
install_requires=[
'Django>=1.2',
],
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: Database",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
)