forked from Jdahn/lasso-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (48 loc) · 1.57 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
51
52
53
54
55
#!/usr/bin/env python
import os
import unittest
import lasso
import numpy as np
from setuptools import setup, find_packages
def collect_tests():
test_loader = unittest.TestLoader()
test_suite = test_loader.discover('.', pattern='test_*.py')
return test_suite
def main():
setup(name='lasso-python',
version='1.1.1',
description='A next-generation CAE Python Library.',
author='Lasso GmbH',
author_email='lasso@lasso.de',
url='https://github.com/lasso-gmbh/lasso-python',
license="BSD-3",
install_requires=[
'numpy',
'plotly',
'matplotlib',
'grpcio',
'enum34',
'protobuf',
'flask',
'h5py',
],
packages=find_packages(),
package_data={
'': ['*.png', '*.html', '*.js', '*.so', '*.dll', '*.txt','*.css'],
},
test_suite='setup.collect_tests',
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Scientific/Engineering',
'Intended Audience :: Science/Research',
'Topic :: Utilities',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7']
)
if __name__ == "__main__":
main()