-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
55 lines (52 loc) · 1.61 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
from setuptools import find_packages, setup
AUTHOR = "Dark Circles"
VERSION = "1.1.0"
SHORT_DESCRIPTION = "A Flowmodoro Timer CLI for producitivity enthusiasts."
AUTHOR_EMAIL = (
"<nibir@nibirsan.org>, <jonakadiptakalita@gmail.com>, <anubhavnath60@gmail.com>"
)
URL = "https://github.com/moiSentineL/flomo"
INSTALL_REQUIRES = [
"click",
"blessed",
"rich",
"playsound==1.2.2",
"click-aliases",
]
PROJECT_URLS = {
"Documentation": "https://github.com/moiSentineL/flomo#flomo",
"Issue tracker": "https://github.com/moiSentineL/flomo/issues",
}
KEYWORDS = ["cli", "productivity", "cli-application"]
CLASSIFIERS = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
]
with open("docs/README.md", "r", encoding="utf-8") as fh:
LONG_DESCRIPTION = fh.read()
if __name__ == "__main__":
setup(
name="flomodoro",
version=VERSION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
description=SHORT_DESCRIPTION,
long_description_content_type="text/markdown",
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=INSTALL_REQUIRES,
url=URL,
keywords=KEYWORDS,
classifiers=CLASSIFIERS,
entry_points={
"console_scripts": [
"flomo = flomo.cli:flomo",
],
},
include_package_data=True,
package_data={"flomo": ["flomo/beep.mp3"]},
)