forked from patonlab/pyQRC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 961 Bytes
/
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
from setuptools import setup
import io
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with io.open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='pyqrc',
packages=['pyqrc'],
version='1.0.3',
description='A python program to project computed structures along computed normal modes and perform a Quick Reaction Coordinate calculation',
long_description=long_description,
long_description_content_type='text/markdown',
author='Paton Research Group',
author_email='robert.paton@colostate.edu',
url='https://github.com/bobbypaton/pyQRC',
download_url='https://github.com/bobbypaton/pyQRC/archive/v1.0.3.zip',
keywords=['compchem', 'thermochemistry', 'gaussian', 'imaginary frequencies', 'intrinsic reaction coordinate', 'normal modes'],
classifiers=[],
python_requires='>=2.6',
include_package_data=True,
)