-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
56 lines (53 loc) · 1.73 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
53
54
55
56
"""Setup script for package."""
import pathlib
from setuptools import find_namespace_packages, setup
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
# This call to setup() does all the work
setup(
name="unlockNN",
version="2.0.3",
description="Uncertainty quantification for neural network models of chemical systems.",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/a-ws-m/unlockNN",
author="Alexander Moriarty",
author_email="[email protected]",
license="MIT",
keywords=[
"keras",
"tensorflow",
"megnet",
"machine learning",
"uncertainty quantification",
],
classifiers=[
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Chemistry",
],
packages=find_namespace_packages(include=["unlocknn*"]),
include_package_data=False,
install_requires=[
"numpy<=1.19.5",
"pymatgen<=2021.2.8",
"megnet>=1.1.4",
"requests",
"pyarrow>=1.0.1",
"tensorflow>=2.2",
"tensorflow-probability>=0.10.1",
"typish; python_version < '3.8'",
],
python_requires=">=3.6",
extras_require={
"Compatible matminer version": ["matminer==0.6.5"],
},
)