-
Notifications
You must be signed in to change notification settings - Fork 43
/
setup.py
35 lines (32 loc) · 1009 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
29
30
31
32
33
34
35
from distutils.core import setup
import versioneer
with open("README.rst", "r") as readme:
long_description = readme.read()
setup(
name='aotools',
author_email='[email protected], [email protected]',
url='https://github.com/aotools/aotools',
packages=['aotools',
'aotools.astronomy',
'aotools.functions',
'aotools.image_processing',
'aotools.turbulence',
'aotools.wfs',
],
description='A set of useful functions for Adaptive Optics in Python',
long_description=long_description,
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
install_requires=[
'numpy',
'scipy',
'matplotlib',
'numba',
],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)