File: setup.cfg

package info (click to toggle)
pyodc 1.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 700 kB
  • sloc: python: 2,369; ansic: 86; makefile: 32
file content (49 lines) | stat: -rw-r--r-- 1,334 bytes parent folder | download
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
[metadata]
name = pyodc
version = attr: codc.__version__
author = European Centre for Medium-Range Weather Forecasts (ECMWF)
author_email = software.support@ecmwf.int
description = A Python interface to odc for encoding/decoding ODB-2 files.
long_description = file: README.md, CHANGELOG.md
long_description_content_type = text/markdown
license = Apache License Version 2.0
url = https://github.com/ecmwf/pyodc
keywords = odc odb
classifiers =
        Intended Audience :: Developers
        License :: OSI Approved :: Apache Software License
        Programming Language :: Python :: 3
        Programming Language :: Python :: 3.8
        Programming Language :: Python :: 3.9
        Programming Language :: Python :: 3.10
        Programming Language :: Python :: 3.11
        Programming Language :: Python :: 3.12
        Programming Language :: Python :: Implementation :: CPython
        Programming Language :: Python :: Implementation :: PyPy
        Operating System :: OS Independent

[options]
package_dir =
    = src
packages = pyodc, codc
python_requires = >=3.8
include_package_data = True
test_suite = tests
install_requires =
    cffi
    odclib>=1.6.0,<1.7.0
    findlibs>=0.1.0
    pandas
    packaging




[options.package_data]
* = *.h

[options.extras_require]
dev =
    pytest
    pytest-cov
    pytest-flakes