-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 984 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
26
27
28
29
30
31
32
from setuptools import setup, find_packages
from pbs_executor import __version__
setup(name='pbs-executor',
version=__version__,
author='Mark Piper',
author_email='[email protected]',
license='Apache',
url='http://github.com/permamodel/pbs-executor',
description='The Permafrost Benchmark System executor',
long_description=open('README.md').read(),
install_requires=[
'pyyaml',
'netCDF4',
'markdown',
'basic-modeling-interface',
],
packages=find_packages(exclude=['*.tests']),
include_package_data=True,
test_suite='nose.collector',
tests_require=[
'nose',
],
keywords='PBS permafrost model benchmark ILAMB',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
)