|
5 | 5 | name = 'djangomarkup',
|
6 | 6 | version = djangomarkup.__versionstr__,
|
7 | 7 | description = 'Support for various markup languages in Django applications',
|
8 |
| - long_description = '\n'.join(( |
9 |
| - '(TODO)', |
10 |
| - )), |
11 |
| - author = 'centrum holdings s.r.o', |
| 8 | + long_description = 'Support for various markup languages in Django applications', |
| 9 | + author = 'Ella Development Team', |
| 10 | + |
12 | 11 | license = 'BSD',
|
| 12 | + url='http://github.com/ella/django-markup', |
13 | 13 |
|
14 | 14 | packages = find_packages(
|
15 | 15 | where = '.',
|
|
18 | 18 |
|
19 | 19 | include_package_data = True,
|
20 | 20 |
|
| 21 | + classifiers=[ |
| 22 | + "Development Status :: 4 - Beta", |
| 23 | + "Intended Audience :: Developers", |
| 24 | + "License :: OSI Approved :: BSD License", |
| 25 | + "Operating System :: OS Independent", |
| 26 | + "Framework :: Django", |
| 27 | + "Programming Language :: Python :: 2.5", |
| 28 | + "Programming Language :: Python :: 2.6", |
| 29 | + "Programming Language :: Python :: 2.7", |
| 30 | + "Operating System :: OS Independent", |
| 31 | + "Topic :: Internet :: WWW/HTTP :: Dynamic Content", |
| 32 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 33 | + ], |
| 34 | + |
| 35 | + install_requires = [ |
| 36 | + 'setuptools>=0.6b1', |
| 37 | + 'Django', |
| 38 | + 'markdown2', |
| 39 | + ], |
21 | 40 | )
|
22 | 41 |
|
0 commit comments