forked from JaDogg/pydoro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (41 loc) · 1.51 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
from codecs import open
from inspect import getsource
from os.path import abspath, dirname, join
from setuptools import setup, find_packages
here = abspath(dirname(getsource(lambda: 0)))
with open(join(here, "README.rst"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="pydoro",
version="0.2.1",
# Get the description from second line & remove `*` character
description=long_description.splitlines()[2][1:-1],
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/JaDogg/pydoro",
author="Bhathiya Perera",
author_email="[email protected]",
python_requires=">=3.6",
license="MIT",
package_data={"": ["*.rst", "*.wav"]},
install_requires=["prompt-toolkit>=3.0.3"],
extras_require={
'audio:platform_system=="Darwin"': [
"pyobjc-core>=5.2",
"pyobjc-framework-Cocoa>=5.2",
],
'audio:platform_system=="Linux"': ["pycairo>=1.18.1", "PyGObject>=3.32.1"],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
keywords="tomato pomodoro pydoro timer work",
packages=find_packages(),
entry_points={"console_scripts": ["pydoro = pydoro.pydoro_tui:main"]},
setup_requires=["wheel"],
)