-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
33 lines (31 loc) · 1.19 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
from setuptools import setup
from setuptools import find_packages
setup(name='eddylicious',
version='0.1.0',
description='A package for generating inflow fields for LES and DNS',
url='https://github.com/timofeymukha/eddylicious',
author='Timofey Mukha',
author_email='[email protected]',
packages=find_packages(),
entry_points = {
'console_scripts':[
'inflowStats=eddylicious.bin.inflowStats:main',
'precursorStats=eddylicious.bin.precursorStats:main',
'runLundRescaling=eddylicious.bin.runLundRescaling:main',
'runInterpolation=eddylicious.bin.runInterpolation:main',
'convertFoamFileToHDF5=eddylicious.bin.convertFoamFileToHDF5:main'
]
},
install_requires=[
'numpy',
'scipy',
'matplotlib',
'mock',
'sphinxcontrib-bibtex',
],
license="GNU GPL 3",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)"
],
zip_safe=False)