-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
47 lines (44 loc) · 1.53 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
import setuptools
from wait_for_it import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="wait-for-it",
version=__version__,
author="Travis Clarke, Sebastian Pipping",
author_email="[email protected], [email protected]",
description="Wait for service(s) to be available before executing a command.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/hartwork/wait-for-it",
packages=setuptools.find_packages(),
python_requires=">=3.9",
setup_requires=["setuptools>=38.6.0"], # for long_description_content_type
py_modules=["wait_for_it"],
install_requires=["click"],
extras_require={
"dev": [
"black",
"click",
"flake8",
"parameterized",
"pytest",
"pytest-cov",
"twine",
]
},
entry_points={"console_scripts": ["wait-for-it=wait_for_it.wait_for_it:cli"]},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Topic :: Internet",
"Topic :: Utilities",
],
)