-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
41 lines (36 loc) · 1.3 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
40
41
# -*- coding: utf-8 -*-"""
"""
Setup file for pymusepipe.
Use setup.cfg to configure your project.
"""
# Licensed under a MIT style license - see LICENSE.txt
from __future__ import absolute_import, division, print_function
from setuptools import setup, find_packages
version = {}
with open("src/pymusepipe/version.py") as fp:
exec(fp.read(), version)
with open('README.md', 'r') as f:
readme = f.read()
with open('LICENSE.txt') as f:
license = f.read()
setup(name='pymusepipe',
version = version['__version__'],
description='python module to reduce MUSE Raw data and combine them',
long_description=readme,
long_description_content_type="text/markdown",
keywords=['MUSE', 'DATAREDUCTION'],
url="https://github.com/emsellem/pymusepipe",
download_url="https://github.com/emsellem/pymusepipe/archive/v2.9.6.beta.tar.gz",
author='Eric Emsellem',
author_email='[email protected]',
license="MIT",
packages=find_packages(exclude=('tests', 'docs')),
install_requires=['mpdaf', 'numpy', 'scipy', 'astropy'],
include_package_data=True,
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)