Skip to content

Commit bd3fe3b

Browse files
committed
Prepared for pypi
1 parent 4ee2e5b commit bd3fe3b

File tree

3 files changed

+24
-11
lines changed

3 files changed

+24
-11
lines changed

djangomarkup/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
VERSION = (0, 1, 4)
2+
VERSION = (0, 1, 5)
33

44
__version__ = VERSION
55
__versionstr__ = '.'.join(map(str, VERSION))

requirements.txt

-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,2 @@
1-
21
Django
32
markdown2
4-
5-
nose
6-
djangosanetesting
7-
git+http://github.com/ella/citools.git#egg=citools
8-

setup.py

+23-4
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
name = 'djangomarkup',
66
version = djangomarkup.__versionstr__,
77
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+
author_email='[email protected]',
1211
license = 'BSD',
12+
url='http://github.com/ella/django-markup',
1313

1414
packages = find_packages(
1515
where = '.',
@@ -18,5 +18,24 @@
1818

1919
include_package_data = True,
2020

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+
],
2140
)
2241

0 commit comments

Comments
 (0)