-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
39 lines (36 loc) · 1.34 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
import setuptools
version = {}
with open('mpet/version.py', 'r', encoding='utf-8') as fh:
exec(fh.read(), version)
__version__ = version['__version__']
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setuptools.setup(
name='mpet',
version=__version__,
description='Multiphase porous electrode theory',
long_description=long_description,
long_description_content_type="text/markdown",
author='Dan Cogswell',
author_email='cogswell@mit.edu',
license='MIT',
url='https://github.com/TRI-AMDD/mpet',
packages=[
'mpet','mpet.plot',
'mpet.electrode.diffusion',
'mpet.electrode.materials',
'mpet.electrode.reactions',
'mpet.electrolyte','mpet.config'
],
install_requires=open('requirements.txt').readlines(),
extras_require={'test':['pytest','coverage', 'coveralls', 'flake8'],
'doc':['sphinx','sphinx_rtd_theme'],
'dashboard': ['dash', 'dash_bootstrap_components'],
'cluster_jobs': ['dask-jobqueue', 'bokeh']},
python_requires='>=3.6',
scripts=['bin/mpetrun.py','bin/mpetplot.py','bin/run_jobs.py', 'bin/create_ensemble.py',
'bin/mpet_create_runjobs_dashboard.py', 'bin/mpet_plot_app.py'],
classifiers=[
"Programming Language :: Python :: 3",
],
)