This repository was archived by the owner on Jul 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
61 lines (57 loc) · 2.11 KB
/
setup.py
File metadata and controls
61 lines (57 loc) · 2.11 KB
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
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="forceful-timer",
version="0.1.1",
description=(
"Forces shutdown once timer runs out or force quits "
"specified applications if timer is interrupted."
),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/PraxTube/forceful-timer",
author="Prax",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
],
keywords="timer, shutdown, forcequit",
package_dir={"": "src"},
# You can just specify package directories manually here if your project is
# simple. Or you can use find_packages().
packages=find_packages(where="src"),
include_package_data=True,
python_requires=">=3.8, <4",
install_requires=["chime", "tqdm"],
# List additional groups of dependencies here (e.g. development
# dependencies). Users will be able to install these using the "extras"
# syntax, for example:
#
# $ pip install sampleproject[dev]
#
# Similar to `install_requires` above, these must be valid existing
# projects.
# extras_require={
# "dev": ["check-manifest"],
# "test": ["coverage"],
# },
# Entry points. The following would provide a command called `sample` which
# executes the function `main` from this package when invoked:
entry_points={
"console_scripts": [
"ftimer=forceful_timer:main.main",
"forceful-timer=forceful_timer:main.main",
],
},
project_urls={ # Optional
"Bug Reports": "https://github.com/PraxTube/forceful-timer/issues",
"Source": "https://github.com/PraxTube/forceful-timer",
},
)