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
|
from setuptools import setup
import sys
from iapws import __version__
if sys.version_info[0] < 3:
with open('README.rst') as file:
long_description = file.read()
else:
with 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='jjgomera@gmail.com',
url='https://github.com/jjgomera/iapws',
description='Python implementation of standard 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"
]
)
|