-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
67 lines (59 loc) · 1.32 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
61
62
63
64
65
66
67
#
# setup.cfg
#
# Configure default parameters for the setup.py package distribution
# command. These defaults are used unless the user explicitly overrides
# them on the command line.
#
# The following two defaults lessen the chance of an out of date version
# of a module lurking in the installation directory and giving
# unexpected results.
#
[metadata]
name = miritools
version = attr: miritools.__version__
description = "MIRI convenience tools"
url = https://github.com/ccossou/miritools
author = "Christophe Cossou"
author_email = "[email protected]"
platforms = ["Linux", "Mac OS X"]
license_files = LICENCE
# When building a package ignore the time stamps and rebuild everything.
[build]
force=1
# When installing a package overwrite everything that is already in the
# installation directory.
[install]
force=1
[build-sphinx]
source-dir = docs
build-dir = docs
all_files = 1
[nosetests]
# Look for scripts that are executable
exe=True
with-xcoverage=True
with-xunit=True
cover-package=.
cover-erase=True
[options.data_files]
* =
LICENCE
README.adoc
[options.extras_require]
docs =
sphinx
sphinx-automodapi
sphinx-rtd-theme
[options]
include_package_data = True
packages = find:
python_requires = >=3.7
install_requires =
pytest
matplotlib
numpy
photutils
astropy
scipy
tabulate