File tree 2 files changed +19
-12
lines changed
2 files changed +19
-12
lines changed Original file line number Diff line number Diff line change
1
+ include README.md LICENSE
2
+ recursive-include geoportal *.py *.html *.js
3
+ include docs/Makefile
4
+ recursive-include docs *
Original file line number Diff line number Diff line change 1
- from distutils . core import setup
2
-
1
+ from setuptools import setup , find_packages
2
+
3
3
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 ,
12
15
install_requires = [
13
16
'markdown' ,
14
17
],
15
- classifiers = [
18
+ classifiers = [
16
19
"Development Status :: 3 - Alpha" ,
17
20
"Environment :: Web Environment" ,
18
21
"Intended Audience :: Developers" ,
21
24
"Programming Language :: Python" ,
22
25
"Framework :: Django" ,
23
26
]
24
- )
27
+ )
You can’t perform that action at this time.
0 commit comments