|
1 | 1 | from setuptools import setup, find_packages |
2 | 2 | from hvad import __version__ as version |
3 | 3 |
|
| 4 | +with open('README.rst') as f: |
| 5 | + long_description = f.read() |
| 6 | + |
4 | 7 | setup( |
5 | 8 | name = 'django-hvad', |
6 | 9 | version = version, |
7 | | - 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.', |
| 10 | + description = 'A content translation framework for django integrated automatically in the normal ORM. Removes the pain of having to think about translations in a django project.', |
| 11 | + long_description = long_description, |
8 | 12 | author = 'Kristian Ollegaard', |
9 | 13 | author_email = 'kristian.ollegaard@divio.ch', |
10 | 14 | url = 'https://github.com/KristianOellegaard/django-hvad', |
|
19 | 23 | zip_safe=False, |
20 | 24 | include_package_data = True, |
21 | 25 | install_requires=[ |
22 | | - 'Django>=1.2', |
| 26 | + 'Django>=1.3', |
23 | 27 | ], |
24 | 28 | classifiers = [ |
25 | 29 | "Development Status :: 3 - Alpha", |
26 | 30 | "Framework :: Django", |
27 | 31 | "Intended Audience :: Developers", |
28 | 32 | "License :: OSI Approved :: BSD License", |
29 | 33 | "Operating System :: OS Independent", |
30 | | - "Programming Language :: Python :: 2.5", |
31 | 34 | "Programming Language :: Python :: 2.6", |
32 | 35 | "Programming Language :: Python :: 2.7", |
33 | 36 | "Programming Language :: Python :: 3.3", |
| 37 | + "Programming Language :: Python :: 3.4", |
34 | 38 | "Topic :: Database", |
35 | 39 | "Topic :: Internet :: WWW/HTTP :: Dynamic Content", |
36 | 40 | ] |
|
0 commit comments