-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·39 lines (34 loc) · 899 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
38
39
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import absolute_import, division, print_function, unicode_literals
from setuptools import setup, find_packages
requirements = [
'numpy',
'scipy',
'astropy',
'matplotlib',
'sep',
'statsmodels',
'esutil',
'psycopg2-binary',
'ephem',
'supersmoother',
# For web interface
'scikit-build', # needed for line-profiler below?..
'django',
# 'django-debug-toolbar',
# 'django-debug-toolbar-line-profiler',
'django-el-pagination',
'markdown',
]
setup(
name='fram',
version='0.1',
description='FRAM telescope related codes',
author='Sergey Karpov',
author_email='[email protected]',
url='',
install_requires=requirements,
packages=['fram'],
package_dir={'':'src'}, # src/fram, symlink to fram, to behave nicely with development install
)