This repository has been archived by the owner on Sep 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
64 lines (60 loc) · 2.49 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
[metadata]
name = specify-lmpy
author = Specify Systems Lifemapper Team
author_email = cjgrady@ku.edu
description = Package of commonly used and shared Lifemapper objects and tools
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/specifysystems/lmpy
project_urls =
Bug Tracker = https://github.com/specifysystems/lmpy/issues
classifiers =
Development Status :: 5 - Production/Stable
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: OS Independent
Topic :: Documentation :: Sphinx
Topic :: Scientific/Engineering
Topic :: Software Development :: Libraries :: Python Modules
[options]
package_dir =
packages = find:
python_requires = >=3.6
[options.packages.find]
where = lmpy
[options.entry_points]
console_scripts =
aggregate_matrices = lmpy.tools.aggregate_matrices:cli
build_grid = lmpy.tools.build_grid:cli
calculate_p_values = lmpy.tools.calculate_p_values:cli
calculate_pam_stats = lmpy.tools.calculate_pam_stats:cli
convert_csv_to_lmm = lmpy.tools.convert_csv_to_lmm:cli
convert_lmm_to_csv = lmpy.tools.convert_lmm_to_csv:cli
convert_lmm_to_geojson = lmpy.tools.convert_lmm_to_geojson:cli
convert_lmm_to_raster = lmpy.tools.convert_lmm_to_raster:cli
convert_lmm_to_shapefile = lmpy.tools.convert_lmm_to_shapefile:cli
create_rare_species_model = lmpy.tools.create_rare_species_model:cli
create_scatter_plot = lmpy.tools.create_scatter_plot:cli
create_sdm = lmpy.tools.create_sdm:cli
create_tree_matrix = lmpy.tools.create_tree_matrix:cli
encode_layers = lmpy.tools.encode_layers:cli
encode_tree_mcpa = lmpy.tools.encode_tree_mcpa:cli
mcpa_run = lmpy.tools.mcpa_run:cli
randomize_pam = lmpy.tools.randomize_pam:cli
rasterize_point_heatmap = lmpy.tools.rasterize_point_heatmap:cli
split_occurrence_data = lmpy.tools.split_occurrence_data:cli
wrangle_matrix = lmpy.tools.wrangle_matrix:cli
wrangle_occurrences = lmpy.tools.wrangle_occurrences:cli
wrangle_species_list = lmpy.tools.wrangle_species_list:cli
wrangle_tree = lmpy.tools.wrangle_tree:cli
[versioneer]
VCS = git
style = pep440-pre
versionfile_source = lmpy/_version.py
versionfile_build = lmpy/_version.py
tag_prefix = ''