-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
40 lines (37 loc) · 1.33 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
from setuptools import setup
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='statmorph',
version='0.6.1',
description='Non-parametric morphological diagnostics of galaxy images',
long_description=long_description,
url='https://github.com/vrodgom/statmorph',
author='Vicente Rodriguez-Gomez',
author_email='vrodgom.astro@gmail.com',
license='BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Astronomy',
],
keywords='astronomy galaxies galaxy-morphology non-parametric',
packages=['statmorph', 'statmorph.tests'],
include_package_data=True,
install_requires=['numpy>=1.14.0',
'scipy>=0.19',
'scikit-image>=0.25.0',
'astropy>=2.0',
'photutils>=0.7'],
python_requires='>=3.9',
extras_require={
'matplotlib': ['matplotlib>=3.0']},
)