forked from Anirbancosmo/Limpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (26 loc) · 671 Bytes
/
Copy pathsetup.py
File metadata and controls
33 lines (26 loc) · 671 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
#!/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': '1.0',
'description': 'Line Intensity Mapping code in PYthon',
'author': 'Anirban Roy',
'author_email': 'anirbanroy.personal@gmail.com',
'packages':['limpy'],
'package_data': {'limpy': ['data/*']},
'include_package_data': True,
'zip_safe': False,
'install_requires':['camb', 'colossus', 'astropy']}
if __name__ == '__main__':
setup(**setup_kwargs)