-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
70 lines (61 loc) · 2.18 KB
/
Copy pathsetup.py
File metadata and controls
70 lines (61 loc) · 2.18 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
62
63
64
65
66
67
68
69
70
#!/usr/bin/env python3
"""
Setup script for minimal-timer PyPI package
"""
from setuptools import setup, find_packages
from pathlib import Path
# Read README
readme_file = Path(__file__).parent / "README.md"
long_description = readme_file.read_text(encoding="utf-8") if readme_file.exists() else ""
setup(
name="minimal-timer",
version="1.0.7",
description="A minimalist zeroconfig command-line timer with smart time parsing and system integration",
long_description=long_description,
long_description_content_type="text/markdown",
author="Danil Kodolov",
author_email="",
url="https://github.com/dandaniel5/minimal-timer",
license="GPL-3.0",
# Package data
py_modules=["timer"],
# Requirements
python_requires=">=3.6",
install_requires=[],
# Entry points
entry_points={
"console_scripts": [
"timer=timer:main",
],
},
# Classifiers
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Utilities",
"Topic :: Office/Business :: Scheduling",
],
# Keywords
keywords="timer countdown cli terminal pomodoro",
# Project URLs
project_urls={
"Bug Reports": "https://github.com/dandaniel5/minimal-timer/issues",
"Source": "https://github.com/dandaniel5/minimal-timer",
"Documentation": "https://github.com/dandaniel5/minimal-timer#readme",
},
)