-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
setup.py
79 lines (73 loc) · 3.16 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# -*- coding: utf-8 -*-
"""Setup module."""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def get_requirements():
"""Read requirements.txt."""
requirements = open("requirements.txt", "r").read()
return list(filter(lambda x: x != "", requirements.split()))
def read_description():
"""Read README.md and CHANGELOG.md."""
try:
with open("README.md") as r:
description = "\n"
description += r.read()
with open("CHANGELOG.md") as c:
description += "\n"
description += c.read()
return description
except Exception:
return '''
Modeling and simulation of proton-exchange membrane fuel cells (PEMFC) may work as a powerful tool in the research &
development of renewable energy sources. The Open-Source PEMFC Simulation Tool (OPEM) is a modeling tool for
evaluating the performance of proton exchange membrane fuel cells. This package is a combination of models
(static/dynamic) that predict the optimum operating parameters of PEMFC. OPEM contained generic models that
will accept as input, not only values of the operating variables such as anode and cathode feed gas, pressure
and compositions, cell temperature and current density, but also cell parameters including the active area and
membrane thickness. In addition, some of the different models of PEMFC that have been proposed in the OPEM,
just focus on one particular FC stack, and some others take into account a part or all auxiliaries such as
reformers. OPEM is a platform for collaborative development of PEMFC models.'''
setup(
name='opem',
packages=['opem', 'opem.Static', 'opem.Dynamic'],
version='1.4',
description='Open Source PEM Cell Simulation Tool',
long_description=read_description(),
long_description_content_type='text/markdown',
author='ECSIM Development Team',
author_email='[email protected]',
url='https://github.com/ecsim/opem',
download_url='https://github.com/ecsim/opem/tarball/v1.4',
keywords="OPEM PEM FC CELL Fuel-Cell Chemistry",
project_urls={
'Webpage': 'http://opem.ecsim.site',
'Source': 'https://github.com/ecsim/opem',
},
platforms=["any"],
install_requires=get_requirements(),
python_requires='>=3.5',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Physics',
],
license='MIT',
entry_points={
'console_scripts': [
'opem = opem.__main__:main',
]}
)