-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
47 lines (43 loc) · 1.4 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
[metadata]
name = tap-adql-sandbox
#version = attr: %(name)s.version.__version__
version = attr: tap_adql_sandbox.version.__version__
author = retif
description = A sandbox application for executing ADQL queries via TAP interface
long_description = file: README.md
long_description_content_type = text/markdown
keywords = tap, adql, gui, astronomy, astrophysics, cosmology, science
url = https://github.com/retifrav/tap-adql-sandbox
project_urls =
Bug Tracker = https://github.com/retifrav/tap-adql-sandbox/issues
Changelog = https://github.com/retifrav/tap-adql-sandbox/blob/master/changelog.md
classifiers =
Programming Language :: Python :: 3.6
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: MacOS
Operating System :: Microsoft :: Windows
Operating System :: POSIX :: Linux
Topic :: Desktop Environment
Topic :: Software Development :: User Interfaces
Topic :: Scientific/Engineering :: Astronomy
Intended Audience :: Science/Research
Intended Audience :: Education
Intended Audience :: Developers
[options]
package_dir =
= src
packages = find_namespace:
python_requires = >=3.6
install_requires =
dearpygui >= 1.5.0
pyvo
astroquery
pandas
tabulate
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
tap-adql-sandbox = tap_adql_sandbox.__main__:main
[mypy]
ignore_missing_imports = true