forked from prechelt/pyth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·28 lines (25 loc) · 969 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
28
from setuptools import setup, find_packages
setup(name="pyth",
version="0.6.0",
packages = find_packages(),
zip_safe = False,
description="Python text markup and conversion",
author="Brendon Hogger",
author_email="[email protected]",
url="http://wiki.github.com/brendonh/pyth",
long_description=open('README').read(),
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: Office/Business",
"Topic :: Software Development :: Libraries",
"Topic :: Text Editors :: Word Processors",
"Topic :: Text Processing",
"Topic :: Text Processing :: Markup",
"Topic :: Text Processing :: Filters",
],
)