forked from Kegbot/kegbot-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·68 lines (58 loc) · 1.65 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
56
57
58
59
60
61
62
63
64
65
66
67
68
#!/usr/bin/env python
"""Kegbot Server package.
Kegbot is a hardware and software system to record and monitor access to a
kegerator. For more information and documentation, see http://kegbot.org/
"""
from setuptools import setup, find_packages
VERSION = '1.2.3'
DOCLINES = __doc__.split('\n')
SHORT_DESCRIPTION = DOCLINES[0]
LONG_DESCRIPTION = '\n'.join(DOCLINES[2:])
DEPENDENCIES = [
'kegbot-pyutils == 0.1.7',
'kegbot-api == 1.1.0',
'Django >= 1.7, < 1.8',
'django-imagekit == 3.1',
'django-registration == 1.0',
'django-socialregistration == 0.5.10',
'django-bootstrap-pagination == 0.1.10',
'Celery == 3.1.17',
'django-crispy-forms == 1.2.8',
'foursquare == 2014.04.10',
'gunicorn == 19.1.1',
'MySQL-python == 1.2.5',
'pillow == 2.4.0',
'protobuf == 2.5.0',
'python-gflags == 2.0',
'django-redis == 3.6.1',
'pytz',
'redis == 2.9.1',
'requests == 2.2.1',
'tweepy == 2.2',
'jsonfield == 0.9.20',
]
def setup_package():
setup(
name = 'kegbot',
version = VERSION,
description = SHORT_DESCRIPTION,
long_description = LONG_DESCRIPTION,
author = 'Bevbot LLC',
author_email = '[email protected]',
url = 'https://kegbot.org/',
packages = find_packages(),
scripts = [
'bin/kegbot',
'bin/setup-kegbot.py',
],
install_requires = DEPENDENCIES,
dependency_links = [
'https://github.com/rem/python-protobuf/tarball/master#egg=protobuf-2.4.1',
],
include_package_data = True,
entry_points = {
'console_scripts': ['instance=django.core.management:execute_manager'],
},
)
if __name__ == '__main__':
setup_package()