-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·36 lines (30 loc) · 960 Bytes
/
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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
requirements = [
"numpy",
"astropy",
"memory-profiler",
"matplotlib",
"scipy"
]
build_root = os.path.dirname(__file__)
def readme():
"""Get readme content for package long description"""
with open(os.path.join(build_root, 'README.rst')) as f:
return f.read()
PACKAGE_NAME = 'mosaic-queen'
__version__ = '1.1.1-dev'
setup(name = PACKAGE_NAME,
version = __version__,
description = "A package with mosaicking commands from montage",
long_description = readme(),
long_description_content_type="text/x-rst",
author = "Sarah White and CaraCal pipeline tean",
author_email = "[email protected]",
url = "https://github.com/caracal-pipeline/MosaicQueen",
packages = find_packages(),
install_requires = requirements,
include_package_data = True,
scripts = ["bin/" + i for i in os.listdir("bin")],
classifiers = [])