File: setup.py

package info (click to toggle)
python-html2text 3.200.3-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 184 kB
  • sloc: python: 661; sh: 60; makefile: 34
file content (36 lines) | stat: -rw-r--r-- 1,224 bytes parent folder | download
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
35
36
import sys
from setuptools import setup, find_packages

setup(
   name = "html2text",
   version = "3.200.3",
   description = "Turn HTML into equivalent Markdown-structured text.",
   author = "Aaron Swartz",
   author_email = "me@aaronsw.com",
   url='http://www.aaronsw.com/2002/html2text/',
   classifiers=[
       'Development Status :: 5 - Production/Stable',
       'Intended Audience :: Developers',
       'License :: OSI Approved :: GNU General Public License (GPL)',
       'Programming Language :: Python',
       'Programming Language :: Python :: 2',
       'Programming Language :: Python :: 2.3',
       'Programming Language :: Python :: 2.4',
       'Programming Language :: Python :: 2.5',
       'Programming Language :: Python :: 2.6',
       'Programming Language :: Python :: 2.7',
       'Programming Language :: Python :: 3',
       'Programming Language :: Python :: 3.0',
       'Programming Language :: Python :: 3.1',
       'Programming Language :: Python :: 3.2'
     ],
    entry_points="""
        [console_scripts]
        html2text=html2text:main
    """,
   license='GNU GPL 3',
   packages=find_packages(),
   py_modules=['html2text'],
   include_package_data=True,
   zip_safe=False,
)