-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.cfg
More file actions
75 lines (67 loc) · 1.88 KB
/
setup.cfg
File metadata and controls
75 lines (67 loc) · 1.88 KB
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
[metadata]
name = cloudgen
version = 1.7
author = Keith F. Prussing
author_email = Keith.Prussing@gtri.gatech.edu
description = cloudgen
long_description = file: README
long_description_content_type = text/plain
license_files = COPYING
url = http://www.met.reading.ac.uk/clouds/cloudgen/
classifiers =
Development Status :: 1 - Planning
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Operating System :: OS Independent
Programming Language :: C
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3 :: Only
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Atmospheric Science
Topic :: Scientific/Engineering :: Physics
Typing :: Typed
keywords =
simulation
modeling
cloud
project_urls =
Documentation = http://www.met.reading.ac.uk/clouds/cloudgen/
Source Code = https://github.com/kprussing/cloudgen
Issue Tracker = https://github.com/kprussing/cloudgen/issues
[options]
packages = find:
package_dir =
=python
install_requires = numpy
netCDF4
include_package_data = True
python_requires = >=3.7, <4
zip_safe = False
[options.packages.find]
where = python
include = cloudgen
[options.package_data]
cloudgen = *.pyi, **/*.pyi, *.typed, **/*.typed
[options.extras_require]
test = pytest
pip>=21.1
nox = toml
nox>=2021.10.1
mypy = types-toml
[flake8]
per-file-ignores =
python/cloudgen/__init__.py: F401
[mypy]
namespace_packages = True
explicit_package_bases = True
mypy_path = python,test
[mypy-setuptools.*]
ignore_missing_imports = True
[mypy-netCDF4.*]
ignore_missing_imports = True