-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (48 loc) · 1.65 KB
/
setup.py
File metadata and controls
51 lines (48 loc) · 1.65 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
# -*- coding: utf-8 -*-
# ----------------------------------------------------------------------------
# Copyright © 2021, Francisco Palm
#
# Licensed under the terms of the MIT license
# ----------------------------------------------------------------------------
"""
Spyder Pomodoro Timer setup.
"""
from setuptools import find_packages
from setuptools import setup
from spyder_pomodoro_timer import __version__
setup(
# See: https://setuptools.readthedocs.io/en/latest/setuptools.html
name="spyder-pomodoro-timer",
version=__version__,
author="Francisco Palm",
author_email="fpalm@qu4nt.com",
description="A very simple pomodoro timer that shows in the status bar.",
license="MIT license",
url="https://github.com/map0logo/spyder-pomodoro-timer",
python_requires='>= 3.7',
install_requires=[
"qtpy",
"qtawesome",
"spyder>=5.0.1",
],
packages=find_packages(),
entry_points={
"spyder.plugins": [
"spyder_pomodoro_timer = spyder_pomodoro_timer.spyder.plugin:SpyderPomodoroTimer"
],
},
classifiers=[
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering",
],
)