-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (44 loc) · 1.52 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pomodoro-timer",
version="0.1",
author="Evgeniy Asvatov",
author_email="evgeniy.asvatov@phystech.edu",
description="A pomodoro timer",
long_description=long_description,
long_description_content_type="text/markdown",
license='MIT License',
keywords='pomodoro-timer pomodoro timer indicator time-management',
url="https://github.com/asvatov/pomodoro-timer",
project_urls={
'Documentation': 'https://github.com/asvatov/pomodoro-timer',
'Funding': 'https://www.patreon.com/hippiest',
'Say Thanks!': 'https://saythanks.io/to/asvatov',
'Source': 'https://github.com/asvatov/pomodoro-timer',
'Tracker': 'https://github.com/asvatov/pomodoro-timer/issues',
},
# py_modules=["six"],
install_requires=["pydub", "dbus-python"],
python_requires='>=3',
# install_requires={
# 'futures; python_version == "2.7"',
# 'pydub'
# },
# package_data={},
# data_files=[('my_data', ['data/data_file'])],
packages=setuptools.find_packages(),
entry_points={
'console_scripts': [
'pomodoro-timer=pomodoro_timer.main:main',
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Environment :: X11 Applications :: GTK",
"Intended Audience :: End Users/Desktop",
]
)