-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (28 loc) · 927 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
from setuptools import setup
import uptime_indicator
# Also requires python-appindicator
setup(
name = uptime_indicator.__name__,
version = uptime_indicator.__version__,
author = uptime_indicator.__author__,
author_email = uptime_indicator.__email__,
license = uptime_indicator.__license__,
description = uptime_indicator.__doc__.strip().splitlines()[0],
long_description = open('README.rst').read(),
url = 'http://github.com/mhogerheijde/uprecords-indicator',
download_url = 'http://github.com/mhogerheijde/uprecords-indicator/archives/master',
packages = ['uptime_indicator'],
include_package_data = True,
zip_safe = False,
platforms = ['all'],
test_suite = 'tests',
entry_points = {
'console_scripts': [
'uptime-records = uptime_indicator.cli:main',
],
},
install_requires=[
'python-dateutil',
'termcolor'
],
)