-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (32 loc) · 1.09 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
from setuptools import setup, find_packages
setup(name='bgexplorer',
version='0.7.4',
description='Web app for exploring details of background modeling',
url='http://github.com/bloer/bgexplorer',
author='Ben Loer',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
package_data={
'bgexplorer': ['templates/*.html','static/*','static/*/*',
'static/*/*/*'],
'bgexplorer.modeleditor': ['templates/*.html'],
'bgexplorer.modelviewer':['templates/*.html','static/*','static/*/*'],
'bgexplorer.simsviewer':['templates/*.html'],
'bgexplorer.assaydb': ['templates/*.html'],
},
zip_safe=False,
install_requires=[
'flask>=2.0,<2.1',
'wtforms<3.0',
'flask-wtf',
'flask-bootstrap',
'flask-basicauth',
'pymongo<4',
'pint',
'numpy',
'matplotlib>=3.1',
'uncertainties',
'bgmodelbuilder @ git+https://github.com/bloer/bgmodelbuilder@master',
],
)