forked from metawards/MetaWards
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
65 lines (60 loc) · 2.01 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
[metadata]
name = metawards
description = MetaWards disease metapopulation modelling
long_description = file: README.md
long_description_content_type = text/markdown
license = GPL3
author = Leon Danon (original C code), Christopher Woods (Python port)
author_email = [email protected], [email protected]
url = https://github.com/metawards/metawards
download_urls = https://pypi.org/project/metawards
project_urls =
Documentation = https://metawards.org
Code = https://github.com/metawards/MetaWards
Issue tracker = https://github.com/metawards/MetaWards/issues
classifiers =
Development Status :: 4 - Beta
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Intended Audience :: Education
Intended Audience :: Science/Research
Topic :: Scientific/Engineering
Natural Language :: English
Operating System :: OS Independent
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Operating System :: POSIX :: Linux
Programming Language :: C
Programming Language :: Cython
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
[entry_points]
console_scripts =
metawards = metawards.app.run:cli
metawards-plot = metawards.scripts.plot:cli
metawards-install = metawards.scripts.install:cli
metawards-python = metawards.scripts.pyexe:cli
metawards-jupyter = metawards.scripts.jupexe:cli
metawards-reticulate = metawards.scripts.retexe:cli
metawards-update = metawards.scripts.update:cli
[options]
zip_safe = False
python_requires = >=3.7
package_dir = =src
packages = find:
[options.packages.find]
where = src
[options.package_data]
* = *.pxd, *.h
metawards = data/*
[versioneer]
VCS = git
style = pep440
versionfile_source = src/metawards/_version.py
versionfile_build = metawards/_version.py
tag_prefix =
parentdir_prefix = metawards-