-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (37 loc) · 1.15 KB
/
Copy pathsetup.py
File metadata and controls
42 lines (37 loc) · 1.15 KB
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
37
38
39
40
41
42
#!/usr/bin/env python
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from html2md import __version__, __author__
setup(
name='html2md',
version=__version__,
# Packaging options.
include_package_data=True,
# Package dependencies.
install_requires=['lxml'],
# Metadata for PyPI.
author='Max Arnold',
author_email='arnold.maxim@gmail.com',
license='BSD',
url='https://bitbucket.org/marnold/html2md',
keywords='html markdown converter',
description='HTML to Markdown converter.',
long_description=open(os.path.abspath(os.path.join(os.path.dirname(__file__), 'README.md')), 'rb').read(),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Filters',
'Topic :: Text Processing :: Markup',
],
packages=[
'html2md',
],
platforms='any'
)