-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.cfg
60 lines (55 loc) · 2.02 KB
/
setup.cfg
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
56
57
58
59
60
# to set version dynamically: https://github.com/pypa/setuptools/issues/1724#issuecomment-627241822
[metadata]
name = frank
version = attr: frank.__version__
author = Richard Booth, Jeff Jennings, Marco Tazzari
author_email = [email protected]
description = Frankenstein, the flux reconstructor
long_description = file: README.md
long_description_content_type = text/markdown
license = LGPLv3
license_file = LICENSE.txt
include_package_data = True
url = https://github.com/discsim/frank
project_urls =
Bug Tracker = https://github.com/discsim/frank/issues
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Intended Audience :: Developers
Intended Audience :: Science/Research
Operating System :: MacOS :: MacOS X
Operating System :: POSIX :: Linux
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
keywords =
science
astronomy
interferometry
[options]
packages = frank
# python_requires docs: https://packaging.python.org/guides/distributing-packages-using-setuptools/#python-requires
python_requires = >=3.8
# PEP 440 - pinning package versions: https://www.python.org/dev/peps/pep-0440/#compatible-release
install_requires =
numpy>=1.12
matplotlib>=3.1.0
scipy>=1.2.0, !=1.12.*, !=1.13.*,!=1.14.*
# additional files to include in install
[options.package_data]
* = default_parameters.json, parameter_descriptions.json, frank.mplstyle
# extras_require syntax:
# https://setuptools.readthedocs.io/en/latest/userguide/declarative_config.html?highlight=options.extras_require#configuring-setup-using-setup-cfg-files
[options.extras_require]
test = pytest
coverage==6.2
coverage-badge==1.1.0
docs-build = sphinx
sphinxcontrib-fulltoc
sphinx_rtd_theme
nbsphinx
jupyter_client
ipykernel