-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (40 loc) · 1.46 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='Asterix',
version='2.6',
description='Asterix: a simulation tool for high-contrast sensing and control coronagraphic algorithms',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/johanmazoyer/Asterix',
author='Asterix Developers',
author_email='[email protected]',
license='BSD',
include_package_data=True,
packages=find_packages(),
zip_safe=False,
classifiers=[
# Indicate who your project is intended for
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Astronomy',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: BSD License',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3.9, 3.10, 3.11',
],
keywords='Exoplanets imaging high-contrast coronagraphy',
install_requires=[
"astropy",
"configobj",
"ipython",
"matplotlib",
"numpy",
"scikit-image",
"scipy",
],
extras_require={
"dev": ["flake8", "jupyter", "pytest", "yapf"],
"docs": ["numpydoc", "sphinx-automodapi", "sphinx_rtd_theme"]
})