-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·37 lines (35 loc) · 1.07 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
from setuptools import setup, find_packages
from packageinfo import NAME, VERSION
# Read description
with open('README.md', 'r') as readme:
README_TEXT = readme.read()
# main setup configuration class
setup(
name=NAME,
version=VERSION,
author='Giorgio La Civita, DIN, University of Bologna',
description='The NanoFOAM Wrapper (NanoDOME + CFD + Elenbaas) for SimPhoNy',
keywords='simphony, cuds, NanoDOME, CFD, Elenbaas',
long_description=README_TEXT,
install_requires=[
'osp-core>=3.0.0',
'numpy',
'scipy',
'psutil',
'matplotlib'
],
tests_require=[
'numpy',
],
packages=find_packages(),
include_package_data=True,
python_requires=">=3.9.0",
entry_points={
'wrappers': [
'cfdsession = osp.wrappers.simcfd:CFDSession',
'nanosession = osp.wrappers.simnanodome:NanoDOMESession',
'elenbaassession = osp.wrappers.simelenbaas:ElenbaasSession',
'coupledreactorsession = osp.wrappers.simcoupledreactor:CoupledReactorSession',
]
}
)