-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (27 loc) · 901 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
'''tridimensional normal mode functions'''
classifiers = '''\
License :: European Union Public Licence - EUPL v.1.1
Programming Language :: Python
Topic :: Scientific/Engineering
'''
import glob
#data=glob.glob('data/*') # data is now on a separated repo: nmf3d_data
doc=glob.glob('doc/*.ipynb')
mat=glob.glob('nmf3d_mat/*')
if __name__ == '__main__':
from numpy.distutils.core import setup
exec(open('nmf3d/version.py').read()),
setup(name = "nmf3d",
version=__version__,
long_description = __doc__,
author = "M Marta-Almeida, C A F Marques, J Castanheira",
author_email = "[email protected]",
url = "https://github.com/martalmeida/nmf3d",
packages = ['nmf3d'],
license = 'EUPL',
platforms = ["any"],
data_files = [('nmf3d/doc', doc),
# ('nmf3d/data',data),
('nmf3d/nmf3d_mat',mat)
]
)