-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (30 loc) · 910 Bytes
/
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
from setuptools import setup, find_packages
try:
with open('README.rst') as file:
long_description = file.read()
except Exception as error:
print("Could not find README.rst for long description. Error: {}".format(
error))
print("Leaving long_description as None")
long_description = None
setup(
name='tomaty',
author='elias julian marko garcia',
author_email='[email protected]',
description=(
'tomaty is a pomodoro program featuring a GUI and tracking system'),
url='https://github.com/ejmg/tomaty',
version='1.0.33',
packages=find_packages(),
entry_points={
"console_scripts": ['tomaty = tomaty.tomaty:run'],
},
install_requires=[
'pygobject',
'simpleaudio',
'datetime',
'pathlib',
],
include_package_data=True,
license='MIT',
long_description=long_description)