forked from pyiron/pylammpsmpi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 1.02 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
from setuptools import setup, find_packages
import versioneer
setup(
name="pylammpsmpi",
version=versioneer.get_version(),
description="Parallel Lammps Python interface",
url='https://github.com/pyiron/pylammpsmpi',
author='Jan Janssen',
author_email='[email protected]',
license='BSD',
classifiers=['Development Status :: 5 - Production/Stable',
'Topic :: Scientific/Engineering :: Physics',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
keywords='lammps, mpi4py',
packages=find_packages(exclude=["*tests*"]),
install_requires=[
'mpi4py==3.1.1'
],
cmdclass=versioneer.get_cmdclass(),
)