-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 886 Bytes
/
setup.py
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
# -*- coding: utf-8 -*-
from distutils.core import setup
# Need to potentially adjust licensing details???
setup(
name='cookiecutter-pysteps-postprocessing-plugin',
packages=[],
version='0.1.0',
description='Cookiecutter template for a Pysteps postprocessing plugin package',
author="PySteps developers",
license='BSD',
keywords=['cookiecutter', 'template', 'pysteps', 'postprocessing', 'plugin'],
python_requires='>=3.6',
classifiers=[
"Development Status :: 3 - Alpha",
"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",
],
)