forked from CompRhys/aviary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (51 loc) · 1.57 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
40
41
42
43
44
45
46
47
48
49
50
51
52
from setuptools import find_packages, setup
setup(
name="aviary",
version="0.1.0",
author="Rhys Goodall",
author_email="rhys.goodall@outlook.com",
url="https://github.com/CompRhys/aviary",
description="A collection of machine learning models for materials discovery",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
packages=find_packages(include=["aviary*"]),
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords=[
"Graph Neural Network",
"Machine Learning",
"Materials Science",
"Materials Discovery",
"Materials Informatics",
"Roost",
"Self-Attention",
"Transformer",
"Wren",
"Wyckoff positions",
],
# if any package at most 2 levels under the aviary namespace contains *.json files,
# include them in the package
package_data={"aviary": ["**/*.json", "**/**/*.json"]},
python_requires=">=3.8",
install_requires=[
"numpy",
"pandas",
"pymatgen",
"scikit_learn",
"tensorboard",
"torch_scatter",
"torch",
"tqdm",
"wandb",
],
extras_require={
# matminer for loading training data used in testing
"test": ["pytest", "pytest-cov", "matminer"],
},
)