-
Notifications
You must be signed in to change notification settings - Fork 127
/
setup.py
30 lines (26 loc) · 880 Bytes
/
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
#!/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="[email protected]",
license="modified BSD",
description="Dependencies for the MP Workshop",
use_scm_version=True,
setup_requires=["setuptools_scm"],
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.8",
)