forked from thomasvrussell/sfft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (45 loc) · 1.51 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
import os
import sys
from setuptools import setup, find_packages
DESCRIPTION = "Image Subtraction in Fourier Space"
LONG_DESCRIPTION = open('README.rst').read()
NAME = "sfft"
AUTHOR = "Lei Hu"
AUTHOR_EMAIL = "[email protected]"
MAINTAINER = "Lei Hu"
MAINTAINER_EMAIL = "[email protected]"
DOWNLOAD_URL = 'https://github.com/thomasvrussell/sfft'
LICENSE = 'MIT Licence'
VERSION = '1.6.1'
install_reqs = ['scipy>=1.5.2',
'astropy>=3.2.3',
'scikit-image>=0.16.2,<=0.18.3',
'fastremap>=1.7.0',
'sep>=1.0.3',
'numba>=0.53.1',
'llvmlite>=0.36.0',
'pyfftw>=0.12.0']
setup(name = NAME,
version = VERSION,
description = DESCRIPTION,
long_description = LONG_DESCRIPTION,
long_description_content_type='text/markdown',
setup_requires = ['numpy'],
install_requires = install_reqs,
author = AUTHOR,
author_email = AUTHOR_EMAIL,
maintainer = MAINTAINER,
maintainer_email = MAINTAINER_EMAIL,
download_url = DOWNLOAD_URL,
license = LICENSE,
packages = find_packages(),
include_package_data = True,
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering :: Astronomy'],
)