-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (34 loc) · 994 Bytes
/
setup.py
File metadata and controls
38 lines (34 loc) · 994 Bytes
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
#!/usr/bin/env python
"""The setup script."""
from setuptools import setup
requirements = [
"requests>=2.25",
]
setup(
author="Sebastian Witowski",
author_email="sebastian@switowski.com",
python_requires=">=3.8",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
description="GUI tool to ping websites and return their HTTP codes.",
entry_points={
"console_scripts": [
"guptimer=guptimer.gui:main",
]
},
install_requires=requirements,
license="MIT license",
keywords="guptimer",
name="guptimer",
packages=["guptimer"],
url="https://github.com/switowski/guptimer",
version="0.1.0",
zip_safe=False,
)