-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 825 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
from setuptools import setup
setup(
name='SAMUS',
version='0.1.0',
description='SAMUS package',
url='https://github.com/astertaylor/SAMUS',
author='Aster Taylor',
author_email='[email protected]',
license='BSD 2-clause',
packages=['SAMUS'],
install_requires=['numpy',
'numpy-quaternion',
'pandas',
'scipy',
'mpi4py',],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.8',
],
package_data={
'SAMUS': ['meshes/*','examples/*','testing/*']},
include_package_data=True
)