forked from brendonh/pyth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·27 lines (24 loc) · 923 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="pyth",
version="0.5.6",
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",
"Topic :: Office/Business",
"Topic :: Software Development :: Libraries",
"Topic :: Text Editors :: Word Processors",
"Topic :: Text Processing",
"Topic :: Text Processing :: Markup",
"Topic :: Text Processing :: Filters",
],
)