-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
34 lines (32 loc) · 952 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
30
31
32
33
34
#!/usr/bin/python
# -*- coding: utf-8 -*-
"""Setup and install the ingest."""
from os import path
from setuptools import setup, find_packages
setup(
name='pacifica-ingest',
use_scm_version=True,
setup_requires=['setuptools_scm'],
description='Pacifica Ingest',
url='https://github.com/pacifica/pacifica-ingest/',
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-ingest=pacifica.ingest.__main__:main',
'pacifica-ingest-cmd=pacifica.ingest.__main__:cmd'
]
},
install_requires=[
'celery',
'cherrypy',
'peewee>2',
'requests'
]
)