-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (53 loc) · 1.84 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as f:
long_description = "\n" + f.read()
MAJOR_VERSION = "0"
MINOR_VERSION = "1"
MICRO_VERSION = "5"
VERSION = "{}.{}.{}".format(MAJOR_VERSION, MINOR_VERSION, MICRO_VERSION)
setup(
name="clidoro",
packages=find_packages(exclude=["docs", "tests*", "examples"]),
version=VERSION,
license="MIT",
zip_safe=False,
platforms="Linux",
description="clidoro: pomodoro in your cli",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/kingjuno/clidoro",
entry_points={"console_scripts": ["clidoro = clidoro.clidoro:main"]},
keywords=["Productivity", "Pomodoro"],
install_requires=[
"playsound",
"alive-progress",
"simple-term-menu",
"requests",
"colorama",
"notify-py"
],
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Customer Service",
"Intended Audience :: System Administrators",
"Operating System :: Unix",
# TODO: Add Windows support
# TODO: Add Mac support
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Software Distribution",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
],
package_data={
"clidoro": ["*.png"],
},
)