-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.cfg
100 lines (88 loc) · 2.06 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[metadata]
author = Florian Matter
author_email = florianmatter@gmail.com
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
description = Plot data on linguistic trees and maps.
keywords =
linguistics
visualization
long_description = file: README.md
long_description_content_type = text/markdown
name = lingtreemaps
project_urls =
Bug Tracker = https://github.com/fmatter/lingtreemaps/issues
url = https://github.com/fmatter/lingtreemaps
version = 0.0.6.dev
[options]
zip_safe = False
include_package_data = True
packages = find:
package_dir =
=src
install_requires =
pandas >= 1.3.5
biopython >= 1.79
colorlog >= 6.7.0
contextily >= 1.2.0
geopandas >= 0.10.2
seaborn >= 0.12.0
pyyaml >= 6.0
importlib-resources >= 5.8.0
[options.entry_points]
console_scripts =
lingtreemaps=lingtreemaps.cli:main
[options.data_files]
# This section requires setuptools>=40.6.0
# It remains empty for now
# Check if MANIFEST.in works for your purposes
[options.extras_require]
dev =
bump2version
coverage [toml]
prospector[with_pyroma]==1.7.7
isort
pytest
pytest-cov
sphinx
sphinx_rtd_theme
sphinx-autoapi
sphinxcontrib-napoleon
tox
myst_parser
flake8
twine
jinja2
keepachangelog
publishing =
twine
wheel
[options.packages.find]
include = lingtreemaps, lingtreemaps.*
where = src
[isort]
lines_after_imports = 2
force_single_line = 1
no_lines_before = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
known_first_party = lingtreemaps
src_paths = lingtreemaps,tests
line_length = 120
[flake8]
max-line-length = 88
extend-ignore = E203
[tool:pytest]
addopts = --cov
testpaths = tests
[coverage:run]
source =
lingtreemaps
[coverage:report]
show_missing = true