-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 1003 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
33
34
35
36
'''
setup.py for pyiapws95
'''
from setuptools import setup, find_packages
import versioneer
CLASSIFIERS = [
"Development Status :: 3 - Alpha",
"License :: Public Domain",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering",
]
metadata = dict(
name="pyiapws95",
version=versioneer.get_version(),
description="Python package to compute thermodynamic properties of water.",
author='George Trojan',
author_email='[email protected]',
license='BSD-0-Clause',
url="https://github.com/yt87/pyiapws95",
install_requires=["numpy>=1.19"],
extras_require={"pint": "pint>=0.10", "numba": "numba>=0.48"},
classifiers=CLASSIFIERS,
packages=find_packages(),
test_suite="tests",
tests_require=["pytest"],
zip_safe=True,
)
setup(**metadata)