-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (33 loc) · 972 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
36
37
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# For ICS, try to get a setuptools which gives us the layout we want
try:
import sdss3tools
from sdss3tools import setup
except ImportError:
from setuptools import setup
def main():
setup(name='opdb',
version='0.1',
description='PFS operational database (opDB) tools',
author='Kiyoto Yabe',
url='https://github.com/Subaru-PFS/spt_operational_database',
install_requires=['sqlalchemy', 'psycopg2-binary'],
zip_safe=False,
include_package_data=True,
license='',
package_dir={'': 'python'},
packages=['opdb'],
extras_require={
'dev': [
'numpy',
'pandas',
'astropy',
'pytest',
'alembic',
'pylint',
],
},
)
if __name__ == '__main__':
main()