-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
37 lines (35 loc) · 1.06 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
#!/usr/bin/python
# -*- coding: utf-8 -*-
"""Setup and install the pacifica service."""
from os import path
from setuptools import setup, find_packages
setup(
name='pacifica-notifications',
use_scm_version=True,
setup_requires=['setuptools_scm'],
description='Pacifica Notifications Service',
url='https://github.com/pacifica/pacifica-notifications/',
long_description=open(path.join(
path.abspath(path.dirname(__file__)),
'README.md')).read(),
long_description_content_type='text/markdown',
author='David Brown',
author_email='[email protected]',
packages=find_packages(include=['pacifica.*']),
namespace_packages=['pacifica'],
entry_points={
'console_scripts': [
'pacifica-notifications=pacifica.notifications.__main__:main',
'pacifica-notifications-cmd=pacifica.notifications.__main__:cmd'
]
},
install_requires=[
'celery',
'cherrypy',
'jsonpath2',
'jsonschema',
'pacifica-namespace',
'peewee',
'requests'
]
)