-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
59 lines (41 loc) · 1.56 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
# -*- coding: utf-8 -*-
# Copyright (C) 2018 Thibault Hallouin
from setuptools import setup, Extension
import numpy
__version__ = '0.2.0'
with open("README.md", "r") as fh:
long_desc = fh.read()
setup(
name='smartcpp',
version=__version__,
description='SMARTcpp: a C++ extension of the rainfall-runoff SMART for Python',
long_description=long_desc,
long_description_content_type="text/markdown",
url='https://github.com/ThibHlln/smartcpp',
author='Thibault Hallouin, Michael Bruen, and Eva Mockler',
author_email='[email protected]',
license='GPLv3',
classifiers=[
'Development Status :: 4 - Beta',
'Natural Language :: English',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Hydrology',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows :: Windows 10',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: C++',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython'
],
ext_modules=[Extension('smartcpp',
sources=['smartcpp/smartcpp.cpp'],
include_dirs=[numpy.get_include()])],
install_requires=[
'numpy'
],
python_requires='>=2.7'
)