This repository has been archived by the owner on May 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
40 lines (38 loc) · 1.7 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
# coding: utf-8
# Copyright (c) Materials Virtual Lab
# Distributed under the terms of the BSD License.
from setuptools import setup, find_packages
setup(
name="veidt",
packages=find_packages(),
version="0.0.2",
install_requires=["numpy", "scipy", "monty", "keras", "tensorflow",
"scikit-learn", "pandas", "pymatgen", "h5py", "joblib"],
author="Materials Virtual Lab",
author_email="[email protected]",
maintainer="Shyue Ping Ong",
maintainer_email="[email protected]",
url="http://www.materialsvirtuallab.org",
license="BSD",
description="Veidt is a deep learning library for materials science.",
long_description="""Veidt is a deep learning library for materials science. It builds on top of
the popular pymatgen (Python Materials Genomics) materials analysis library
and well-known deep learning libraries like Keras and Tensorflow. The aim is
to link the power of both kinds of libraries for rapid experimentation and
learning of materials data.""",
keywords=["materials", "science", "deep", "learning"],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Software Development :: Libraries :: Python Modules"
],
)