-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 799 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name="cookiecutter-pysteps-plugin",
packages=[],
version="0.1.1",
description="Cookiecutter template for a Pysteps plugin package",
author="PySteps developers",
license="BSD",
keywords=["cookiecutter", "template", "pysteps", "plugin"],
python_requires=">=3.10",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Scientific/Engineering :: Hydrology",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)