-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 850 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (29 loc) · 850 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
from setuptools import setup, find_packages
setup(
name="ScreenTime",
version="0.1",
packages=find_packages(),
install_requires=[
"psutil",
"pywin32",
"tkinter",
"sqlite3"
],
entry_points={
"console_scripts": [
"screentime = screen_time.gui:main",
],
},
author="Maksim Azarskov",
author_email="maksim.azarskov@eek.ee",
description="A simple screen time tracker using Tkinter",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/mazarskov/ScreenTime",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Windows",
],
python_requires='>=3.10',
)