-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 749 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 749 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
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="wyckoff-gen",
packages=["wyckoff_generation"],
version="0.1.0",
description="Generative modeling of Wyckoff representations of materials",
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
"torch==2.3.0",
"torch_geometric==2.5.3",
"tqdm",
"numpy==1.26.4",
'Aviary @ git+https://github.com/CompRhys/aviary@v1.1.1',
"matplotlib",
"scikit-learn",
"pandas",
"wandb",
"pre-commit",
"pyxtal",
"mace-torch",
],
)