-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
66 lines (55 loc) · 2.12 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (C) 2017, JK
# Full license can be found in License.md
# -----------------------------------------------------------------------------
from os import path, mkdir
from setuptools import setup, find_packages
# Define a read function for using README for long_description
def read(fname):
return open(path.join(path.dirname(__file__), fname)).read()
# generate path for fortran model files
here = path.abspath(path.dirname(__file__))
fortran_path = path.join(here, 'sami2py', 'fortran')
test_data_path = path.join(here, 'sami2py', 'tests', 'test_data')
file_path = path.join(path.expanduser('~'), '.sami2py')
if not path.isdir(file_path):
mkdir(file_path)
with open(path.join(file_path, 'fortran_path.txt'), 'w+') as f:
f.write(fortran_path)
with open(path.join(file_path, 'test_data_path.txt'), 'w+') as f:
f.write(test_data_path)
# Define a test suite
# def sami2_test_suite():
# import unittest
#
# test_loader = unittest.TestLoader()
# test_path = path.join(path.dirname(__file__), 'sami2py/tests')
# test_suite = test_loader.discover(test_path, pattern='test_*.py')
# return test_suite
# Run setup
setup(name='sami2py',
version='0.1a1',
url='gitlab.com/jklenzing/sami2py',
author='Jeff Klenzing',
author_email='[email protected]',
description='Generate, read, and plot sami2 model runs',
long_description=read('README.md'),
packages=find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering :: Physics",
"Intended Audience :: Science/Research",
"License :: BSD",
"Natural Language :: English",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Operating System :: MacOS :: MacOS X",
],
include_package_data=True,
zip_safe=False,
test_suite='setup.sami2py_test_suite',
)