Skip to content

Commit cba6301

Browse files
author
Fabien Schwob
committedAug 14, 2015
* Improved app setup
1 parent bbff397 commit cba6301

File tree

2 files changed

+19
-12
lines changed

2 files changed

+19
-12
lines changed
 

‎MANIFEST.in

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
include README.md LICENSE
2+
recursive-include geoportal *.py *.html *.js
3+
include docs/Makefile
4+
recursive-include docs *

‎setup.py

+15-12
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
1-
from distutils.core import setup
2-
1+
from setuptools import setup, find_packages
2+
33
setup(
4-
name = "textprocessor",
5-
version = "0.1",
6-
author = "Fabien Schwob",
7-
license = "BSD",
8-
url = "http://github.com/jibaku/django-textprocessor",
9-
packages = [
10-
"textprocessor",
11-
],
4+
name="textprocessor",
5+
version="0.1.1",
6+
author="Fabien Schwob",
7+
license="BSD",
8+
url="http://github.com/jibaku/django-textprocessor",
9+
description="""
10+
Templatetags and filter to process text (string) to enhance link (add
11+
link, check typography rules, etc.)
12+
""".strip(),
13+
packages=find_packages(exclude=[]),
14+
include_package_data=True,
1215
install_requires=[
1316
'markdown',
1417
],
15-
classifiers = [
18+
classifiers=[
1619
"Development Status :: 3 - Alpha",
1720
"Environment :: Web Environment",
1821
"Intended Audience :: Developers",
@@ -21,4 +24,4 @@
2124
"Programming Language :: Python",
2225
"Framework :: Django",
2326
]
24-
)
27+
)

0 commit comments

Comments
 (0)
Please sign in to comment.