forked from thombashi/pytablewriter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
140 lines (115 loc) · 4.39 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
# encoding: utf-8
"""
.. codeauthor:: Tsuyoshi Hombashi <[email protected]>
"""
from __future__ import unicode_literals
import io
import os.path
import sys
import setuptools
MODULE_NAME = "pytablewriter"
REPOSITORY_URL = "https://github.com/thombashi/{:s}".format(MODULE_NAME)
REQUIREMENT_DIR = "requirements"
ENCODING = "utf8"
pkg_info = {}
def need_pytest():
return set(["pytest", "test", "ptr"]).intersection(sys.argv)
def get_release_command_class():
try:
from releasecmd import ReleaseCommand
except ImportError:
return {}
return {"release": ReleaseCommand}
with open(os.path.join(MODULE_NAME, "__version__.py")) as f:
exec(f.read(), pkg_info)
with io.open("README.rst", encoding=ENCODING) as f:
long_description = f.read()
with io.open(os.path.join("docs", "pages", "introduction", "summary.txt"), encoding=ENCODING) as f:
summary = f.read().strip()
with open(os.path.join(REQUIREMENT_DIR, "requirements.txt")) as f:
install_requires = [line.strip() for line in f if line.strip()]
with open(os.path.join(REQUIREMENT_DIR, "test_requirements.txt")) as f:
tests_requires = [line.strip() for line in f if line.strip()]
with open(os.path.join(REQUIREMENT_DIR, "docs_requirements.txt")) as f:
docs_requires = [line.strip() for line in f if line.strip()]
setuptools_require = ["setuptools>=38.3.0"]
pytest_runner_require = ["pytest-runner"] if need_pytest() else []
excel_requires = ["xlwt", "XlsxWriter>=0.9.6,<2.0.0"]
es6_requires = ["elasticsearch>=6.2.0,<7.0.0"]
from_requires = ["pytablereader>=0.26.1,<1.0.0"]
html_requires = ["dominate>=2.1.5,<3.0.0"]
logging_requires = ["Logbook>=0.12.3,<2.0.0"]
sqlite_requires = ["SimpleSQLite>=0.45.2,<1.0.0"]
toml_requires = ["toml>=0.9.3,<1.0.0"]
optional_requires = ["simplejson>=3.8.1,<4.0"]
all_requires = (
excel_requires
+ es6_requires
+ from_requires
+ html_requires
+ logging_requires
+ sqlite_requires
+ toml_requires
+ optional_requires
)
tests_requires = frozenset(tests_requires + all_requires)
setuptools.setup(
name=MODULE_NAME,
version=pkg_info["__version__"],
url=REPOSITORY_URL,
author=pkg_info["__author__"],
author_email=pkg_info["__email__"],
description=summary,
include_package_data=True,
keywords=[
"table", "CSV", "Excel", "JavaScript", "JSON", "LTSV", "Markdown", "MediaWiki", "HTML",
"pandas", "reStructuredText", "SQLite", "TSV", "TOML",
],
license=pkg_info["__license__"],
long_description=long_description,
packages=setuptools.find_packages(exclude=["test*"]),
project_urls={
"Documentation": "https://{:s}.rtfd.io/".format(MODULE_NAME),
"Source": REPOSITORY_URL,
"Tracker": "{:s}/issues".format(REPOSITORY_URL),
},
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
install_requires=setuptools_require + install_requires,
setup_requires=setuptools_require + pytest_runner_require,
tests_require=tests_requires,
extras_require={
"all": all_requires,
"build": ["twine", "wheel"],
"docs": docs_requires,
"excel": excel_requires,
"es5": ["elasticsearch>=5.5.2,<6.0.0"],
"es6": es6_requires,
"html": html_requires,
"from": from_requires,
"logging": logging_requires,
"release": ["releasecmd>=0.0.18,<0.1.0"],
"sqlite": sqlite_requires,
"test": tests_requires,
"toml": toml_requires,
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing",
"Topic :: Text Processing :: Markup :: HTML",
"Topic :: Text Processing :: Markup :: LaTeX",
],
cmdclass=get_release_command_class())