forked from peteboyd/lammps_interface
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
38 lines (36 loc) · 1.27 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
31
32
33
34
35
36
37
38
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name="lammps-interface",
author="Peter Boyd, Mohamad Moosavi, Matthew Witman",
python_requires=">=3.6",
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
version="0.2.0",
license="MIT",
url="https://github.com/peteboyd/lammps_interface",
description="Automatic generation of LAMMPS input files for molecular dynamics simulations of MOFs",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
install_requires=requirements,
extras_require={
'docs': [ 'sphinx>=2,<3', 'sphinx-rtd-theme>=0.4,<1' ],
'tests': [ 'pytest' ]
},
entry_points={
'console_scripts': [
'lammps-interface = lammps_interface.cli:main'
]
},
include_package_data=True,
packages=find_packages(),
)