-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
44 lines (37 loc) · 1.12 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
import os
import sys
from setuptools import setup, find_packages
assert sys.version_info >= (2, 7), "Python 2.7+ required."
current_dir = os.path.abspath(os.path.dirname(__file__))
sys.path.insert(0, os.path.join(current_dir, 'src', 'selena'))
from selena.version import VERSION
release = ".".join(str(num) for num in VERSION)
setup(
name='selena',
version=release,
packages=find_packages('src/selena'),
include_package_data=True,
package_dir={'': 'src/selena'},
description="Simple CURL based monitoring system.",
author='Grupa Allegro Sp. z o.o. and Contributors',
url='http://github.com/allegro/selena',
author_email='[email protected]',
license='Apache Software License v2.0',
install_requires=[
"django==1.5.11",
"lck.django==0.8.10",
"MySQL-python==1.2.5",
"South==1.0.1",
"pycurl==7.19.5",
"django-tastypie==0.12.1",
"rq==0.3.8",
"django-rq==0.7.0",
"selena-agent==1.0.3",
],
zip_safe=False,
entry_points={
'console_scripts': [
'selena = selena.__main__:main',
],
},
)