-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·40 lines (38 loc) · 1.31 KB
/
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
37
38
39
40
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="pomopy",
version="0.0.2",
author="Sophie Zhang",
author_email="[email protected]",
description="Pomopy is a fun ASCII-art-filled, customizable time-management solution to optimize productivity.",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
keywords="pomodoro productivity tomato",
url="https://github.com/sophiezhng/pomopy",
project_urls={
"Bug Tracker": "https://github.com/sophiezhng/pomopy/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
'Intended Audience :: Developers',
'Operating System :: Microsoft :: Windows',
'Operating System :: Unix',
'Operating System :: MacOS',
],
platforms='any',
scripts=['pomopy'],
packages=setuptools.find_packages(),
data_files=['digital_watch_alarm.mp3',
'about.txt', 'about.txt',
'banner.txt', 'tomato.txt',
'troll.txt',
'preferences.json'],
include_package_data=True,
zip_safe=False,
python_requires=">=3.6",
install_requires=['playsound']
)