-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
47 lines (43 loc) · 1.46 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
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 = "leihu@andrew.cmu.edu"
MAINTAINER = "Lei Hu"
MAINTAINER_EMAIL = "leihu@andrew.cmu.edu"
DOWNLOAD_URL = 'https://github.com/thomasvrussell/sfft'
LICENSE = 'MIT Licence'
VERSION = '1.6.3'
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'],
)