-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 809 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 809 Bytes
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
from setuptools import setup
setup(
name='simulation_database',
version='v0.1.0beta',
packages=['simdb',
'simdb.viewer',
'simdb.utils',
],
url='https://github.com/king-michael/simulation_database',
license='Apache License, Version 2.0, January 2004, http://www.apache.org/licenses/',
author=[
'Michael King',
'Andrej Berg'
],
author_email=[
'michael.king@uni-konstanz.de',
'andrej.berg@uni-konstanz.de'
],
description='Python application based on SQL, Flask and PyQt to manage meta information about MD simulations.',
install_requires=[
'typing', # for type checking
'SQLAlchemy',
'flask',
'Flask-SQLAlchemy',
'pandas>=0.21',
'numpy'
]
)