-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (45 loc) · 1.33 KB
/
setup.py
File metadata and controls
48 lines (45 loc) · 1.33 KB
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
"""
setup.py: Install QCArchive Workflow script.
"""
import versioneer
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='qcarw',
description='An automated workflow that can refine MD simulation trajectories.',
url='https://github.com/hjnpark/QCARWorkflow',
author='Heejune Park',
packages=find_packages(),
package_data={'': ['*.ini']},
include_package_data=True,
long_description=long_description,
long_description_content_type="text/markdown",
scripts=['bin/Nebterpolate.py'],
entry_points={'console_scripts': [
'qcarw-refine = qcarw.refine:main',
'qcarw-dsoptimize = qcarw.dsopt:main',
'qcarw-smooth = qcarw.smooth:main',
'qcarw-optimize = qcarw.opt:main',
'qcarw-neb = qcarw.neb:main',
'qcarw-irc = qcarw.irc:main',
]},
install_requires=[
'numpy>=1.11',
'networkx',
'scipy>=1.6',
'matplotlib',
],
tests_require=[
'pytest',
'pytest-cov',
],
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
],
zip_safe=True,
)