-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 792 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
"""
Setup script for mpcat.
"""
setup(
name='mpcat',
version='0.0.1',
packages=find_packages(),
url='https://github.com/espottesmith/MPcat',
author='Evan Walter Clark Spotte-Smith',
author_email='espottesmith@gmail.com',
python_requires=">=3.8",
description="""An interface between the Materials Project software suite and the Schrodinger
Python API, designed to allow for high-throughput execution of Jaguar
and AutoTS calculations for molecular thermodynamics and kinetics.
Let the cat out of the box!""",
keywords=["schrodinger", "jaguar", "autots", "chemistry", "kinetics", "materials",
"project", "electronic", "structure", "analysis", "automation",
"transition", "state"]
)