-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 811 Bytes
/
setup.py
File metadata and controls
33 lines (29 loc) · 811 Bytes
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
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
"""
Created on Wed Jun 3 23:03:21 2020
@author: anirbanroy
"""
import sys
try:
from setuptools import setup
have_setuptools = True
except ImportError:
from distutils.core import setup
have_setuptools = False
setup_kwargs = {
'name': 'limpy',
'version': '2.0',
'description': 'Line Intensity Mapping code in Python',
'author': 'Anirban Roy',
'author_email': 'anirbanroy.personal@gmail.com',
'packages': ['limpy'],
'package_data': {
'limpy': ['data/*.dat', 'data/*.npz'] # Include all .dat and .npz files in data directory
},
'include_package_data': True,
'zip_safe': False,
'install_requires': ['camb', 'colossus', 'astropy']
}
if __name__ == '__main__':
setup(**setup_kwargs)