-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
executable file
·38 lines (35 loc) · 1.15 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""create python packages for publishing"""
from pyXSteam import __version__
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="pyXSteam",
version=__version__,
author="drunsinn",
author_email="[email protected]",
keywords="steam water ice XSteam",
description="""pyXSteam is a port of the Matlab/Excel Package XSteam
by Magnus Holmgren, www.x-eng.com to Python 3""",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/drunsinn/pyXSteam",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Physics",
"Development Status :: 4 - Beta",
],
packages=["pyXSteam"],
install_requires=[],
python_requires=">=3.4",
include_package_data=True,
zip_safe=True,
scripts=["bin/pyXSteamDemo.py"],
)