Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
nomad-lab
analytics-error-estimates
Commits
fa106662
Commit
fa106662
authored
Jul 05, 2020
by
Luigi Sbailo
Browse files
Add setup file
parent
97e3247f
Changes
1
Hide whitespace changes
Inline
Side-by-side
setup.py
0 → 100644
View file @
fa106662
import
json
from
setuptools
import
setup
,
find_packages
with
open
(
'metainfo.json'
)
as
file
:
metainfo
=
json
.
load
(
file
)
setup
(
name
=
'error_estimates'
,
version
=
'1.0'
,
author
=
', '
.
join
(
metainfo
[
'authors'
]),
author_email
=
metainfo
[
'email'
],
url
=
metainfo
[
'url'
],
description
=
metainfo
[
'title'
],
long_description
=
metainfo
[
'description'
],
packages
=
find_packages
(),
install_requires
=
[
'numpy'
,
'matplotlib'
,
'nglview'
,
'ase'
,
'bokeh'
],
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment