-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 857 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 857 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
from setuptools import setup
setup(
name='sdf',
version='0.1',
description='all your seds are belong to us',
url='https://github.com/drgmk/sdf',
author='Grant M. Kennedy',
author_email='g.kennedy@warwick.ac.uk',
license='MIT',
packages=['sdf'],
classifiers=['Programming Language :: Python :: 3'],
install_requires=[
'astropy', 'bokeh', 'corner',
'extinction', 'emcee', 'filelock', 'bleach',
'jinja2', 'matplotlib', 'mysql-connector-python', 'numpy',
'pymultinest', 'pytest', 'requests', 'scipy'
],
include_package_data=True,
entry_points={
'console_scripts': ['sdf-fit=sdf.scripts:sdf_fit',
'sdf-sample=sdf.scripts:sdf_sample',
'sdf-cleanup=sdf.scripts:sdf_cleanup']
},
zip_safe=False
)