forked from robjameswall/dhitools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 805 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
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name="dhitools",
version="1.2.0",
description="Python tools for working with DHI MIKE",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Alex Waterhouse / Rob Wall",
author_email="aewaterhouse1@gmail.com",
url="https://github.com/Aewaterhouse/dhitools",
license="LICENSE.txt",
packages=["dhitools"],
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Operating System :: Microsoft :: Windows",
"License :: OSI Approved :: MIT License",
],
install_requires=[
"numpy >= 1.14.5",
"PyCRS>=0.1.3",
"scipy>=1.1.0",
"pandas>=0.23.1",
],
)