-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
63 lines (54 loc) · 1.58 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 re
import sys
from setuptools import find_packages, setup
import wpparser
if sys.argv[-1] == "publish":
os.system("python setup.py sdist upload")
sys.exit()
test_requirements = [
"pytest>=3",
]
requires = [
"phpserialize>=1.3",
]
version = ""
with open("wpparser/__init__.py", "r") as fd:
version = re.search(
r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(), re.MULTILINE
).group(1)
# Convert markdown to rst
try:
from pypandoc import convert
long_description = convert("README.md", "rst")
except:
long_description = ""
setup(
name="wpparser",
version=version,
description="Parse wordpress export files into a well formatted python dictionary", # NOQA
long_description=long_description,
author="Martin Sandström",
author_email="[email protected]",
url="https://github.com/marteinn/wpparser",
packages=find_packages(),
package_data={"": ["LICENSE", ], "wpparser": ["*.txt"]},
package_dir={"wpparser": "wpparser"},
include_package_data=True,
install_requires=requires,
tests_require=test_requirements,
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 :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)