forked from arachnys/cabot
-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
29 lines (26 loc) · 926 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
from os import environ as env # noqa
import pkg_resources
requirements_file = os.path.join(os.path.dirname(__file__), 'requirements.txt')
with open('requirements.txt') as f:
requirements = list(map(str, pkg_resources.parse_requirements(f)))
# pull in active plugins
with open('requirements-plugins.txt') as f:
plugins = list(map(str, pkg_resources.parse_requirements(f)))
setup(
name='cabot',
version='0.0.2-dev',
description="Self-hosted, easily-deployable monitoring and alerts service"
" - like a lightweight PagerDuty",
long_description=open('README.md').read(),
author="Arachnys",
author_email='[email protected]',
url='http://cabotapp.com',
license='MIT',
install_requires=requirements + plugins,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
)