-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
75 lines (65 loc) · 2.06 KB
/
Copy pathsetup.py
File metadata and controls
75 lines (65 loc) · 2.06 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
#!/usr/bin/env python
"""
Setup script for scorpiodr
Usage: pip install [-e] .
"""
import os
from setuptools import setup, find_packages, Extension
# try:
# from Cython.Build import cythonize
# except ImportError:
# use_cython = False
# else:
# use_cython = True
VERSION = '0.1.0'
PACKAGENAME = 'scorpiodr'
PACKAGES = find_packages()
# EXTENSIONS
# suffix = 'pyx' if use_cython else 'c'
# EXTENSIONS = [
# Extension("gempy.library.cython_utils",
# [os.path.join('gempy', 'library', 'cython_utils.' + suffix)])
# ]
# if use_cython:
# EXTENSIONS = cythonize(EXTENSIONS)
EXTENSIONS = []
setup(name='scorpiodr',
version=VERSION,
description='Gemini Data Processing Python Package',
author='Gemini Data Processing Software Group',
author_email='sus_inquiries@gemini.edu',
url='http://www.gemini.edu',
maintainer='Science User Support Department',
license='BSD',
zip_safe=False,
packages=PACKAGES,
include_package_data=True,
scripts=None,
ext_modules=EXTENSIONS,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Gemini Ops',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Operating System :: Linux :: CentOS',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python',
'Topic :: Gemini',
'Topic :: Data Reduction',
'Topic :: Scientific/Engineering :: Astronomy',
],
install_requires=[
'dragons>=3.2',
],
extras_require={
'docs': ['sphinx', 'sphinx_rtd_theme'],
'test': ['pytest', 'pytest_dragons>=1.0.0', 'coverage', 'objgraph'],
},
project_urls={
'Issue Tracker': 'https://github.com/GeminiDRSoftware/ScorpioDR',
'Documentation': 'https://dragons.readthedocs.io/',
},
# keywords=['astronomy', 'astrophysics', 'science', 'gemini'],
python_requires='>=3.10',
)