-
Notifications
You must be signed in to change notification settings - Fork 36
/
setup.py
42 lines (32 loc) · 1.14 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:
Dr. Maximilian N. Günther
European Space Agency (ESA)
European Space Research and Technology Centre (ESTEC)
Keplerlaan 1, 2201 AZ Noordwijk, The Netherlands
Email: [email protected]
GitHub: mnguenther
Twitter: m_n_guenther
Web: www.mnguenther.com
"""
from setuptools import setup, find_packages
setup(
name = 'allesfitter',
packages = find_packages(),
version = '1.2.10',
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
)