-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 832 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 832 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
from setuptools import setup
import os, glob
here = os.path.abspath(os.path.dirname(__file__))
output = os.path.join(here, 'published_output/')
setup(name='bem',
version='1.0.0',
description='Random forest for exoplanets',
long_description=open("README.md").read(),
long_description_content_type='text/markdown',
url='https://github.com/soleneulmer/bem',
author='Solène Ulmer-Moll',
author_email='solene.ulmer-moll@astro.up.pt',
license='MIT',
packages=['bem'],
install_requires=['numpy', 'scipy',
'pandas', 'scikit-learn',
'matplotlib', 'astropy',
'uncertainties',
'lime'],
data_files=[('published_output', glob.glob('published_output/*'))],
zip_safe=False,
)