-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·51 lines (42 loc) · 1.68 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
#!/usr/bin/env python
"""
Copyright 2020
Sigvald Marholm <[email protected]>
Diako Darian <[email protected]>
This file is part of PUNC.
PUNC is free software: you can redistribute it and/or modify it under the terms
of the GNU General Public License as published by the Free Software Foundation,
either version 3 of the License, or (at your option) any later version.
PUNC is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
PUNC. If not, see <http://www.gnu.org/licenses/>.
"""
from setuptools import setup
from io import open # Necessary for Python 2.7
with open('README.rst', encoding='utf-8') as f:
long_description = f.read()
with open('.version') as f:
version = f.read().strip()
setup(name='punc',
version=version,
description='Particles-in-Unstructured-Cells',
long_description=long_description,
author=['Sigvald Marholm', 'Diako Darian'],
author_email='[email protected]',
url='https://github.com/puncproject/punc.git',
packages=['punc'],
install_requires=['numpy',
'scipy',
'matplotlib',
'fenics>=2019.1,<2019.2',
'mshr',
'metaplot',
'tasktimer'],
entry_points = {'console_scripts': ['punc = punc.object_interaction:run']},
license='GPL',
classifiers=[
'Programming Language :: Python :: 3.7'
]
)