-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
236 lines (205 loc) · 7.42 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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
#!/usr/bin/env python
# setup.py
"""
cardinal_pythonlib setup file
To use:
python setup.py sdist
twine upload dist/*
To install in development mode:
pip install -e .
"""
from setuptools import setup, find_packages
from codecs import open
from os import path
from cardinal_pythonlib.version_string import VERSION_STRING
PACKAGE_NAME = "cardinal_pythonlib"
THIS_DIR = path.abspath(path.dirname(__file__))
README_FILE = path.join(THIS_DIR, "README.rst") # read
# =============================================================================
# Get the long description from the README file
# =============================================================================
with open(README_FILE, encoding="utf-8") as f:
long_description = f.read()
# =============================================================================
# Specify requirements
# =============================================================================
REQUIREMENTS = [
# - Include most things that are imported without "try / except
# ImportError" handling.
# - Include as few version requirements as possible.
# - Keep it to pure-Python packages (for e.g. Windows installation with no
# compiler).
# - Keep it to SMALL packages.
# - SEE ALSO external_dependencies.rst
"alembic",
"appdirs>=1.4.0",
"beautifulsoup4", # "import bs4" or "from bs4 import ..."
"colorlog",
"isodate>=0.5.4",
"numba", # just-in-time compilation
"numpy>=1.20.0,<2.0", # 1.20.0 required for numpy.typing
"openpyxl",
"pandas",
"pendulum>=2.1.1",
"prettytable",
"psutil",
"pygments",
"pyparsing",
"pypdf>=3.1.0", # https://pypdf.readthedocs.io/en/stable/
"python-dateutil", # "import dateutil"
"rich-argparse>=0.5.0", # colourful help
"scipy",
"semantic-version",
"SQLAlchemy>=1.4,<2.0",
"sqlparse",
]
NOTES_RE_OTHER_REQUIREMENTS = """
# -----------------------------------------------------------------------------
# Use the PyPi index:
# -----------------------------------------------------------------------------
--index-url https://pypi.python.org/simple/
# -----------------------------------------------------------------------------
# The following are NOT HANDLED GRACEFULLY; their absence will cause a runtime
# ImportError, but we don't make them requirements as they need a compiler to
# install (and one might want to use the rest of the library without them).
# -----------------------------------------------------------------------------
# - SEE ALSO external_dependencies.rst
# arrow
# bcrypt
# colander
# deform
# Django>=4.2
# dogpile.cache
# pyramid
# webob # installed by pyramid
# -----------------------------------------------------------------------------
# The following are OPTIONAL; their absence will be handled gracefully, so
# they are not requirements, but we note them here:
# -----------------------------------------------------------------------------
# - SEE ALSO external_dependencies.rst
# mmh3
# pdfkit
# pdfminer
# pypiwin32
# pyth
# python-docx # "import docx"
# weasyprint
# xhtml2pdf
# -----------------------------------------------------------------------------
# FOR LIBRARY DEVELOPMENT
# -----------------------------------------------------------------------------
# sphinx
# sphinx_rtd_theme
# twine
"""
# =============================================================================
# setup args
# =============================================================================
setup(
name=PACKAGE_NAME,
version=VERSION_STRING,
description="Miscellaneous Python libraries",
long_description=long_description,
# The project's main homepage.
url="https://github.com/RudolfCardinal/pythonlib",
# Author details
author="Rudolf Cardinal",
author_email="[email protected]",
# Choose your license
license="Apache License 2.0",
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 4 - Beta",
# Indicate who your project is intended for
"Intended Audience :: Developers",
# Pick your license as you wish (should match "license" above)
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries",
],
keywords="cardinal",
packages=find_packages(), # finds all the .py files in subdirectories
install_requires=REQUIREMENTS,
entry_points={
"console_scripts": [
# Format is 'script=module:function".
# openxml
(
"cardinalpythonlib_find_bad_openxml="
"cardinal_pythonlib.openxml.find_bad_openxml:main",
),
(
"cardinalpythonlib_find_recovered_openxml="
"cardinal_pythonlib.openxml.find_recovered_openxml:main"
),
(
"cardinalpythonlib_grep_in_openxml="
"cardinal_pythonlib.openxml.grep_in_openxml:main"
),
(
"cardinalpythonlib_pause_process_by_disk_space="
"cardinal_pythonlib.openxml.pause_process_by_disk_space:main"
),
# tools
(
"cardinalpythonlib_backup_mysql_database="
"cardinal_pythonlib.tools.backup_mysql_database:main"
),
(
"cardinalpythonlib_bulk_email="
"cardinal_pythonlib.bulk_email.main:main"
),
(
"cardinalpythonlib_convert_athena_ohdsi_codes="
"cardinal_pythonlib.tools.convert_athena_ohdsi_codes:main"
),
(
"cardinalpythonlib_convert_mdb_to_mysql="
"cardinal_pythonlib.tools.convert_mdb_to_mysql:main"
),
(
"cardinalpythonlib_estimate_mysql_memory_usage="
"cardinal_pythonlib.tools.estimate_mysql_memory_usage:main"
),
(
"cardinalpythonlib_list_all_file_extensions="
"cardinal_pythonlib.tools.list_all_file_extensions:main"
),
(
"cardinalpythonlib_merge_csv="
"cardinal_pythonlib.tools.merge_csv:main"
),
(
"cardinalpythonlib_pdf_to_booklet="
"cardinal_pythonlib.tools.pdf_to_booklet:main"
),
(
"cardinalpythonlib_remove_duplicate_files="
"cardinal_pythonlib.tools.remove_duplicate_files:main"
),
(
"cardinalpythonlib_explore_clang_format_config="
"cardinal_pythonlib.tools.explore_clang_format_config:main"
),
# other
"cardinalpythonlib_chebi=cardinal_pythonlib.chebi:main",
(
"cardinalpythonlib_email="
"cardinal_pythonlib.email.sendmail:main"
),
(
"cardinalpythonlib_extract_text="
"cardinal_pythonlib.extract_text:main"
),
]
},
)