forked from MNGuenther/allesfitter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (32 loc) · 1.09 KB
/
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
35
36
37
38
39
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Wed Jan 23 11:40:38 2019
@author:
Maximilian N. Günther
MIT Kavli Institute for Astrophysics and Space Research,
Massachusetts Institute of Technology,
77 Massachusetts Avenue,
Cambridge, MA 02109,
USA
Email: [email protected]
Web: www.mnguenther.com
"""
from setuptools import setup, find_packages
setup(
name = 'allesfitter',
packages = find_packages(),
version = '1.1.1c',
description = 'A global inference framework for photometry and RV',
author = 'Maximilian N. Günther & Tansu Daylan',
author_email = '[email protected]',
url = 'https://github.com/MNGuenther/allesfitter',
download_url = 'https://github.com/MNGuenther/allesfitter',
license='MIT',
classifiers=['Development Status :: 5 - Production/Stable', #3 - Alpha / 4 - Beta / 5 - Production/Stable
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python'],
#install_requires=['numpy>=1.10'],
include_package_data = True
)