-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (26 loc) · 798 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from setuptools import setup, find_packages
setup(
name="textprocessor",
version="0.2.0",
author="Fabien Schwob",
license="BSD",
url="https://github.com/jibaku/django-textprocessor",
description="""
Templatetags and filter to process text (string) to enhance link (add
link, check typography rules, etc.)
""".strip(),
packages=find_packages(exclude=[]),
include_package_data=True,
install_requires=[
'markdown',
],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Django",
]
)