-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (44 loc) · 1.34 KB
/
setup.py
File metadata and controls
45 lines (44 loc) · 1.34 KB
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
import os
import re
from setuptools import setup
def get_version():
with open(os.path.join("pyTomoAO", "__init__.py")) as f:
return re.search(r'__version__ = "(.*)"', f.read()).group(1)
setup(
name='pyTomoAO',
version=get_version(),
description='An open-source tool for tomographic reconstuction for AO systems',
url='https://github.com/jacotay7/pyTomoAO',
author='Jacob Taylor',
author_email='jtaylor@keck.hawaii.edu',
license='GNU',
packages=['pyTomoAO'],
install_requires=[
'numpy',
'matplotlib',
'numba',
'scipy',
'pytest',
'PyYAML'
],
extras_require={
'docs': [
'sphinx',
'sphinx_rtd_theme',
'sphinx-autodoc-typehints'
]
},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Environment :: MacOS X',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
)