-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.cfg
42 lines (38 loc) · 1.37 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
# to set version dynamically: https://github.com/pypa/setuptools/issues/1724#issuecomment-627241822
[metadata]
name = uvplot
version = attr: uvplot.__version__
author = Marco Tazzari
author_email = [email protected]
description = Utilities for handling and plotting interferometric visibilities.
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/mtazzari/uvplot
project_urls =
Bug Tracker = https://github.com/mtazzari/uvplot/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.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
keywords =
science
astronomy
interferometry
[options]
packages = uvplot
# python_requires docs: https://packaging.python.org/guides/distributing-packages-using-setuptools/#python-requires
python_requires = >=3.6
# PEP 440 - pinning package versions: https://www.python.org/dev/peps/pep-0440/#compatible-release
install_requires =
numpy>=1.9
matplotlib