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