forked from pykoala/pykoala
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
63 lines (59 loc) · 1.93 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# -*- coding: utf-8 -*-
import setuptools
import versioneer
#DESCRIPTION_FILES = ["pypi-intro.rst"]
#
#long_description = []
#import codecs
#for filename in DESCRIPTION_FILES:
# with codecs.open(filename, 'r', 'utf-8') as f:
# long_description.append(f.read())
#long_description = "\n".join(long_description)
setuptools.setup(
name = "pykoala-ifs",
version = versioneer.get_version(),
packages = setuptools.find_packages('src'),
package_dir = {'': 'src'},
install_requires = [
"astropy>=2.0.16",
"matplotlib>=2.2.3",
"numpy>=1.16.6",
"scipy>=1.2.3",
"synphot",
'future',
'enum34;python_version<"3.4"',
'logbook',
],
#python_requires = '>=3.5',
author = u"Ángel López-Sánchez",
author_email = "[email protected]",
description = "Data reduction tools for KOALA IFU.",
#long_description = long_description,
license = "3-clause BSD",
keywords = "astronomy aat koala",
url = "https://pykoala.readthedocs.io",
project_urls={
'Documentation': 'https://pykoala.readthedocs.io',
'Source': 'https://github.com/pykoala/koala/',
'Tracker': 'https://github.com/pykoala/koala/issues',
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Topic :: Scientific/Engineering',
#'Programming Language :: Python :: 3',
#'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
#'Programming Language :: Python :: 3.8',
#'Programming Language :: Python :: 3 :: Only',
],
entry_points = {
'console_scripts': [
"reduce-koala-data = koala.cli:reduce_koala_data_main",
],
},
include_package_data=True,
cmdclass=versioneer.get_cmdclass(),
)