-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (33 loc) · 932 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
#!/usr/bin/env python
# %Part of https://github.com/moritzhuetten/DMbounds under the
# %Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License, see LICENSE.rst
# import sys
from setuptools import setup, find_packages
setup(
name='dmbounds',
version='0.1.1',
description='A library of current DM bounds',
url='https://github.com/moritzhuetten/dmbounds',
author='Moritz Huetten, Michele Doro',
author_email='[email protected]',
license='CC Attribution-NonCommercial-ShareAlike 3.0 Unported',
packages=find_packages(),
install_requires=[
'palettable',
'numpy',
'scipy',
'astropy',
'matplotlib',
'pandas',
'ipywidgets',
'IPython',
'PyYAML'
],
package_data={
'dmbounds': [
'bounds/*/*',
'modelpredictions/*',
'legends/*'
],
},
)