Skip to content

Commit 58f82cc

Browse files
author
José Gómez-Dans
committed
Package
1 parent 36d5b9e commit 58f82cc

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

MANIFEST.in

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
include setup.py
2+
include enwofost/data/*
3+
include enwofost/*py

setup.py

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
import os
2+
from setuptools import setup
3+
4+
try:
5+
version = os.environ['SIAC_VERSION']
6+
except:
7+
version = '0.0.3'
8+
9+
with open('README.md', 'rb') as f:
10+
readme = f.read().decode()
11+
12+
setup(name = 'enwofost',
13+
version = version,
14+
description = 'Ensembles of wofost',
15+
long_description = readme,
16+
long_description_content_type ='text/markdown',
17+
author = 'Hongyuan Ma',
18+
author_email = '[email protected]',
19+
classifiers = ['Development Status :: 4 - Beta',
20+
'Programming Language :: Python :: 2.7',
21+
'Programming Language :: Python :: 3.6'],
22+
install_requires = ['gdal>=2.1', 'numpy>=1.13', 'scipy>=1.0', 'pcse',
23+
'netCDF4', 'cdsapi'],
24+
url = 'https://github.com/Ma-hy/enwofost',
25+
license = "GNU Affero General Public License v3.0",
26+
include_package_data = True,
27+
packages = ['enwofost'],
28+
)

0 commit comments

Comments
 (0)