forked from lab-cosmo/i-pi-dev_archive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (21 loc) · 800 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
26
27
28
"""Setup script used for package installation."""
# This file is part of i-PI.
# i-PI Copyright (C) 2014-2015 i-PI developers
# See the "licenses" directory for full license information.
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='i-PI',
version='1.0',
description='A Python interface for ab initio path integral molecular dynamics simulations.',
long_description=read('README.rst'),
packages=find_packages(),
scripts=['bin/i-pi'],
libraries=[('ipi', {'sources': ['drivers/sockets.c']})],
author="Michele Ceriotti",
author_email="[email protected]",
classifiers=['Development Status :: 5 - Production/Stable'],
license='GPLv3'
)