-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
28 lines (26 loc) · 880 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
from setuptools import setup
setup(
name='Python-utils',
version='0.1',
description='Miscellaneous Python utilities for image processing, analysis, simulation, astro, etc',
url='https://github.com/avigan/Python-utils',
author='Arthur Vigan',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Professional Astronomers',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License'
],
keywords='image processing data analysis',
packages=['vigan', 'vigan.astro', 'vigan.optics', 'vigan.utils', 'vigan.ao'],
install_requires=[
'numpy', 'scipy', 'astropy', 'pandas', 'matplotlib'
],
include_package_data=True,
package_data={
'vigan': ['data/evolution/*'],
},
zip_safe=False
)