forked from jjgomera/iapws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (33 loc) · 1.31 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
from setuptools import setup
from iapws import __version__
import io # for backwards compatibility with Python 2
with io.open('README.rst', encoding="utf8") as file:
long_description = file.read()
setup(
name='iapws',
version=__version__,
packages=['iapws'],
package_data={'': ['LICENSE']},
author='jjgomera',
author_email='[email protected]',
url='https://github.com/jjgomera/iapws',
download_url='https://github.com/jjgomera/iapws/tarball/v' + __version__,
description='Python implementation of standards from The International'
'Association for the Properties of Water and Steam',
long_description=long_description,
license="gpl v3",
install_requires=["scipy"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries :: Python Modules"
]
)