-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathsetup.py
38 lines (36 loc) · 1.17 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
35
36
37
38
#!/usr/bin/env python
# coding: utf-8
from setuptools import setup, find_packages
import sys
import wp2md.authoring
from wp2md.version import get_version
setup(
name='wp2md',
description='A script to convert Wordpress XML dumps to plain text/markdown files.',
version=get_version(),
license=wp2md.authoring.__license__,
author=wp2md.authoring.__author__,
author_email=wp2md.authoring.__email__,
url=wp2md.authoring.__url__,
long_description=open('README.md',"rb").read().decode('utf8'),
platforms=['any'],
packages=find_packages(),
install_requires=[
'markdown',
'html2text'
],
entry_points={'console_scripts': ['wp2md = wp2md.wp2md:main']},
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
],
dependency_links=[
'https://github.com/aaronsw/html2text/tarball/master#egg=html2text'
],
)