-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
47 lines (39 loc) · 987 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
46
47
[metadata]
name = timeseriesql
# version should be PEP440 compatible (https://www.python.org/dev/peps/pep-0440/)
version = 0.1.4
author = Michael Beale
author_email = [email protected]
description = A Pythonic query language for time series data
long_description =
license = BSD 3-Clause
url = https://github.com/mbeale/timeseriesql
edit_on_github = False
github_project = mbeale/timeseriesql
python_requires = ">=3.6"
[options]
zip_safe = False
use_2to3 = False
[options.package_data]
* = *.c
timeseriesql = data/*
[build_sphinx]
source-dir = docs
build-dir = docs/_build
all_files = 1
[build_docs]
source-dir = docs
build-dir = docs/_build
all_files = 1
[upload_docs]
upload-dir = docs/_build/html
show-response = 1
[tool:pytest]
minversion = 3.0
norecursedirs = build docs/_build
doctest_plus = enabled
addopts = -p no:warnings
[flake8]
exclude = extern,sphinx,*parsetab.py,docs/conf.py,setup.py
[pycodestyle]
exclude = extern,sphinx,*parsetab.py,docs/conf.py,setup.py