forked from NOAA-GFDL/fre-python-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
41 lines (36 loc) · 1.13 KB
/
setup.cfg
File metadata and controls
41 lines (36 loc) · 1.13 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
[metadata]
name = fre-python-tools
#version = attr: fre-python-tools.VERSION
version = 0.0.1
author = GFDL workflow team
author_email = oar.gfdl.workflow@noaa.gov
description = Python-based tools and interfaces to be used by FRE workflows
long_description = file: README.md, LICENSE.md, SECURITY.md, AUTHORS.txt
license = Lesser General Public License (LGPL)
classifiers =
Programming Language :: Python :: 3
[options]
zip_safe = False
include_package_data = True
packages = find:
python_requires = >=3.6
install_requires =
metomi.isodatetime
#[options.package_data]
#* = *.txt, *.rst, *.md
#hello = *.msg
[options.entry_points]
console_scripts =
multiply-duration = fre_python_tools.utilities.multiply_duration:main
subtract-durations = fre_python_tools.utilities.subtract_durations:main
generate-time-average = fre_python_tools.generate_time_averages.generate_time_averages:main
cmor-mixer = fre_python_tools.cmor_mixer.CMORmixer:main
#[options.extras_require]
#pdf = ReportLab>=1.2; RXP
#rest = docutils>=0.3; pack ==1.1, ==1.3
#[options.packages.find]
#exclude =
# examples*
# tools*
# docs*
# my_package.tests*