-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.cfg
45 lines (39 loc) · 955 Bytes
/
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
# Inside of setup.cfg
[metadata]
name = pymusepipe
description-file = Wrapper around MUSE software to reduce MUSE data
author = Eric Emsellem
author-email = [email protected]
license = mit
long-description = file: README.md
long-description-content-type = text/x-md; charset=UTF-8
# Change if running only on Windows, Mac or Linux (comma-separated)
platforms = any
# Add here all kinds of additional classifiers as defined under
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers =
Development Status :: 4 - Beta
Programming Language :: Python
[options]
zip_safe = False
packages = find:
include_package_data = True
package_dir =
=src
[options.packages.find]
where = src
exclude =
tests
[aliases]
dists = bdist_wheel
[build_sphinx]
source_dir = docs/sources
build_dir = docs/build
[flake8]
# Some sane defaults for the code style checker flake8
exclude =
.tox
build
dist
.eggs
docs/conf.py