-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (35 loc) · 1002 Bytes
/
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
from setuptools import setup, find_packages
setup(
name="study-timer-pro",
version="1.0.0",
description="A feature-rich Pomodoro timer with analytics and distraction blocking",
author="Rishabh Rai",
author_email="rairishabh280@gmail.com",
url="https://github.com/RishabhRai280/study-timer-pro",
packages=find_packages(where="src"),
package_dir={"": "src"},
include_package_data=True,
install_requires=[
"pygame",
"matplotlib",
"numpy",
"Pillow",
"psutil",
"plyer",
"requests",
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Education",
"Topic :: Utilities",
],
python_requires=">=3.8",
entry_points={
"console_scripts": [
"study-timer-pro=src.main:main",
],
},
)