forked from brendonh/pyth
-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
34 lines (30 loc) · 1.06 KB
/
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
29
30
31
32
33
34
from __future__ import absolute_import
from setuptools import setup, find_packages
setup(name="pyth3",
version="0.7",
packages = find_packages(),
zip_safe = False,
description="Python text markup and conversion",
author="Brendon Hogger",
author_email="[email protected]",
url="http://github.com/prechelt/pyth",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Topic :: Office/Business",
"Topic :: Software Development :: Libraries",
"Topic :: Text Editors :: Word Processors",
"Topic :: Text Processing",
"Topic :: Text Processing :: Markup",
"Topic :: Text Processing :: Filters",
],
requires = [
"beautifulsoup4",
"six",
],
)