-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
31 lines (27 loc) · 895 Bytes
/
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
#! /usr/bin/env python3
#-*-coding:utf-8-*-
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name = 'openfluid-buildmachine',
version = '0.0.1',
description = 'Tool for automatically build, test and package the OpenFLUID modelling platform',
long_description = readme(),
author = 'Jean-Christophe Fabre, Armel Thöni',
author_email = '[email protected], [email protected]',
url = 'http://github.com/OpenFLUID/openfluid-buildmachine',
license = 'GPLv3',
packages = ['ofbm'],
entry_points = {
'console_scripts': [
'ofbm = ofbm.__main__:main',
'mbm = mbm.__main__:main',
'openfluid-mbm = mbmRecast.__main__:main'
]
},
test_suite='tests',
install_requires = [
'argparse'
]
)