forked from timothygebhard/hswfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (47 loc) · 1.66 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
"""
Set up hswfs as a Python package.
"""
# -----------------------------------------------------------------------------
# IMPORTS
# -----------------------------------------------------------------------------
from os.path import join, dirname
from setuptools import find_packages, setup
# -----------------------------------------------------------------------------
# PRELIMINARIES
# -----------------------------------------------------------------------------
# Read in current package version
with open(join(dirname(__file__), "hswfs/VERSION")) as version_file:
version = version_file.read().strip()
# -----------------------------------------------------------------------------
# RUN setup() FUNCTION
# -----------------------------------------------------------------------------
setup(
name="hswfs",
version=version,
description="A virtual Hartmann-Shack wavefront sensor",
author="Timothy Gebhard",
author_email="mail@timothygebhard.de",
url="https://github.com/timothygebhard/hswfs",
packages=find_packages(),
include_package_data=True,
install_requires=[
"astropy>=5.1",
"black>=22.6.0",
"matplotlib>=3.5.3",
"numpy>=1.23.2",
"scipy>=1.9.0",
"sympy>=1.10.1",
"tqdm>=4.64.0",
],
license="MIT",
zip_safe=False,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Astronomy",
],
)