-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup.py
33 lines (31 loc) · 1.14 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
from setuptools import find_packages, setup
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='astride',
version='0.3.8',
description='Automated Streak Detection for High Velocity Objects',
long_description=readme(),
platforms=['any'],
packages=find_packages(),
include_package_data=True,
url='https://github.com/dwkim78/astride',
license='MIT',
author='Dae-Won Kim',
author_email='[email protected]',
install_requires=['numpy>=1.14', 'photutils>=2.0', 'astropy>=3.0',
'matplotlib>=2.1.1', 'scipy>=1.0.0',
'scikit-image>=0.13.1'],
keywords=['astronomy', 'image', 'streak', 'satellite', 'meteor', 'NEO',
'fast-moving objects', 'boundary-tracing', 'contour-tracing'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: Astronomy'
]
)