-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·55 lines (49 loc) · 1.54 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
#!/usr/bin/env python
''' This is the setup script for the pyFAT package'''
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
requirements = [
'numpy>=1.14',
'scipy',
'astropy',
'omegaconf>=2.2.2',
'matplotlib',
'future-fstrings',
'psutil',
'make-moments==1.0.6',
'importlib_resources>=3.3.0',
'importlib_metadata',
'TRM_errors>=0.0.5',
]
PACKAGE_NAME = 'pyFAT_astro'
__version__ = 'v0.1.7'
#with open("README.md", "r") as fh:
# long_description = fh.read()
long_description = ""
setup(name=PACKAGE_NAME,
version=__version__,
description="Development Status :: 4 - Beta",
long_description=long_description,
long_description_content_type="text/markdown",
author="P. Kamphuis",
author_email="[email protected]",
url="https://github.com/PeterKamphuis/pyFAT",
packages=[PACKAGE_NAME],
python_requires='>=3.6',
install_requires=requirements,
include_package_data=True,
# package_data - any binary or meta data files should go into MANIFEST.in
scripts=["bin/" + j for j in os.listdir("bin")],
license="GNU GPL v3",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Astronomy"
]
)