forked from materialsproject/workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 837 Bytes
/
setup.py
File metadata and controls
29 lines (25 loc) · 837 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
module_dir = os.path.dirname(os.path.abspath(__file__))
if __name__ == "__main__":
setup(
name="mp_workshop",
author="The Materials Project",
author_email="feedback@materialsproject.org",
license="modified BSD",
description="Dependencies for the MP Workshop",
version="2020.07.10",
url="https://workshop.materialsproject.org",
packages=find_packages("python_module"),
package_dir={"": "python_module"},
install_requires=[
"pymatgen",
"atomate",
"graphviz",
"mpcontribs-client",
"crystal-toolkit",
],
package_data={"mp_workshop.data.data_files": ["*.json"]},
python_requires=">=3.7",
)