This repository has been archived by the owner on Jan 30, 2023. It is now read-only.
forked from Kegbot/kegbot-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·71 lines (61 loc) · 1.79 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
69
70
71
#!/usr/bin/env python
"""Kegbot Beer Kegerator Server package.
Kegbot is a hardware and software system to record and monitor access to a beer
kegerator. For more information and documentation, see http://kegbot.org/
"""
from setuptools import setup, find_packages
from pykeg import __version__ as VERSION
DOCLINES = __doc__.split('\n')
SHORT_DESCRIPTION = DOCLINES[0]
LONG_DESCRIPTION = '\n'.join(DOCLINES[2:])
DEPENDENCIES = [
'kegbot-pyutils == 0.1.7',
'kegbot-api == 0.1.8',
'Django == 1.5.1',
'django-imagekit == 2.0.2',
'django-registration == 0.8',
'django-socialregistration == 0.5.10',
'django-bootstrap-pagination == 0.1.10',
'Celery == 3.0.19',
'django-celery == 3.0.17',
'django-kombu == 0.9.4',
'South == 0.8.1',
'django-crispy-forms == 1.2.8',
'django-icanhaz == 0.2.1',
'django_nose == 1.1',
'facebook-sdk == 0.4.0',
'foursquare == 20130402',
'gunicorn == 0.17.4',
'MySQL-python == 1.2.4',
'pillow == 1.7.8',
'protobuf == 2.5.0',
'python-gflags == 2.0',
'python-memcached == 1.51',
'pytz == 2013b',
'tweepy == 2.0',
]
def setup_package():
setup(
name = 'kegbot',
version = VERSION,
description = SHORT_DESCRIPTION,
long_description = LONG_DESCRIPTION,
author = 'mike wakerly',
author_email = '[email protected]',
url = 'http://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()