-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
52 lines (45 loc) · 1.7 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
# to set version dynamically: https://github.com/pypa/setuptools/issues/1724#issuecomment-627241822
[metadata]
name = oasishurricane
version = attr: oasishurricane.__version__
author = Marco Tazzari
author_email = [email protected]
description = A Python command-line utility for Linux that computes the economic loss for hurricanes in Florida and in the Gulf states.
long_description = file: README.md
long_description_content_type = text/markdown
license = BSD-3
license_file = LICENSE
include_package_data = False
url = https://github.com/mtazzari/oasishurricane
project_urls =
Bug Tracker = https://github.com/mtazzari/oasishurricane/issues
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: BSD License
Intended Audience :: Developers
Intended Audience :: Science/Research
Operating System :: MacOS :: MacOS X
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
keywords =
catastrophe
catastrophemodelling
insurtech
[options]
packages = oasishurricane
# python_requires docs: https://packaging.python.org/guides/distributing-packages-using-setuptools/#python-requires
python_requires = >=3.6
# PEP 440 - pinning package versions: https://www.python.org/dev/peps/pep-0440/#compatible-release
install_requires =
numpy>=1.9
numba
[options.extras_require]
test = pytest
# configuring entry_points in setup.cfg:
# https://stackoverflow.com/questions/48884796/how-to-setup-entry-points-in-setup-cfg/48891252
[options.entry_points]
console_scripts =
gethurricaneloss = oasishurricane.cli:main