-
Notifications
You must be signed in to change notification settings - Fork 45
/
setup.cfg
53 lines (50 loc) · 1.76 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
[metadata]
name = exotic
url = https://github.com/rzellem/EXOTIC
download_url = https://github.com/rzellem/EXOTIC/releases/latest
project_urls =
Documentation = https://github.com/rzellem/EXOTIC/wiki
Site = https://exoplanets.nasa.gov/exoplanet-watch
Source = https://github.com/rzellem/EXOTIC
Tracker = https://github.com/rzellem/EXOTIC/issues
Download = https://github.com/rzellem/EXOTIC/releases/latest
author = Exoplanet Watch at NASA JPL
author_email = [email protected]
# Trove classifiers
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: End Users/Desktop
Intended Audience :: Science/Research
License :: Other/Proprietary License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Scientific/Engineering :: Astronomy
license = Proprietary -- Copyright (c) 2019-present, California Institute of Technology.
license_files =
LICENSE
description = EXOTIC: EXOplanet Transit Interpretation Code
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
keywords = nasa, jpl, exoplanet, transit, citizen science, astronomy, bayesian, nested-sampler
[options]
zip_safe = False
python_requires = >=3.10
include_package_data = True
packages =
exotic
exotic.api
install_requires = file: requirements.txt
[options.entry_points]
console_scripts =
exotic = exotic.exotic:main
exotic-gui = exotic.exotic_gui:main
[options.packages.find]
exclude =
tests
*.tests
*.tests.*
tests.*