forked from marteinn/wpparser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
63 lines (54 loc) · 1.77 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
import pip
from pip.req import parse_requirements
from setuptools import setup
import wpparser
if sys.argv[-1] == "publish":
os.system("python setup.py sdist upload")
sys.exit()
packages = [
"wpparser"
]
# Handle requirements
requires = parse_requirements("requirements/install.txt",
session=pip.download.PipSession())
install_requires = [str(ir.req) for ir in requires]
requires = parse_requirements("requirements/tests.txt",
session=pip.download.PipSession())
tests_require = [str(ir.req) for ir in requires]
# Convert markdown to rst
try:
from pypandoc import convert
long_description = convert("README.md", "rst")
except:
long_description = ""
setup(
name="wpparser",
version=wpparser.__version__,
description="Parse wordpress export files into a well formatted python dictionary", # NOQA
long_description=long_description,
author="Martin Sandström",
author_email="martin@marteinn.se",
url="https://github.com/marteinn/wpparser",
packages=packages,
package_data={"": ["LICENSE", ], "wpparser": ["*.txt"]},
package_dir={"wpparser": "wpparser"},
include_package_data=True,
install_requires=install_requires,
license="MIT",
zip_safe=False,
classifiers=(
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7"
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4"
),
)