Initial project version

This commit is contained in:
sebastiankloth
2022-04-11 10:59:06 +02:00
commit 4fb80d9d44
58 changed files with 33879 additions and 0 deletions

21
setup.py Executable file
View File

@ -0,0 +1,21 @@
from setuptools import setup
setup(
name='store',
description='A database interface to store MD evaluations.',
author_email='niels.mueller@physik.tu-darmstadt.de',
packages=['store', 'store.webview'],
version='0.2',
requires=['sqlalchemy', 'psycopg2', 'pandas'],
zip_safe=False,
include_package_data=True,
package_data={'store': ['store.cfg'], 'store.webview': [
'templates/*', 'static/bootstrap_v4/*/*', 'static/jquery_v3/*', 'static/popper_v1/*']},
entry_points={
'console_scripts': [
'mdeval = store.eval:cli',
'store-dump = store.store:dump_cli'
]
},
)