forked from aimat-lab/gcnn_keras
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (50 loc) · 1.81 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
from setuptools import setup
with open("README.md", "r", encoding="utf8") as fh:
long_description = fh.read()
setup(
name="kgcnn",
version="3.0.0", # If version is updated, change version in `kgcnn.__init__` too. (and update changelog)
author="Patrick Reiser",
author_email="[email protected]",
description="General Base Layers for Graph Convolutions with tensorflow.keras",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/aimat-lab/gcnn_keras",
install_requires=[
"numpy>=1.23.0",
"scikit-learn>=1.1.3",
"pandas>=1.5.2",
"scipy>=1.9.3",
"matplotlib>=3.6.0",
"rdkit>=2022.9.2",
"pymatgen>=2022.11.7",
"tensorflow>=2.9.0",
"tensorflow-addons>=0.18.0",
"keras-tuner>=1.1.3",
"requests>=2.28.1",
"networkx>=2.8.8",
"sympy>=1.11.1",
"pyyaml>=6.0",
"ase>=3.22.1",
"click>=7.1.2",
"brotli>=1.0.9",
"pyxtal>=0.5.5"
],
extras_require={
"openbabel": ["openbabel"],
},
packages=find_packages(),
include_package_data=True,
package_data={"kgcnn": ["*.json", "*.yaml", "*.csv"]},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Software Development :: Libraries :: Python Modules"
],
keywords=["materials", "science", "machine", "learning", "deep", "graph", "networks", "neural"]
)