-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 953 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 953 Bytes
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
import os
from setuptools import setup, find_packages
from subprocess import call
# Read the contents of your README file
PACKAGE_DIR = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(PACKAGE_DIR, 'README.md'), encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
setup(name='NNMDKit',
version='0.1.0',
author='Kuan-Hsuan Shen',
author_email='kshen64@gatech.edu',
description='Automated generation of LAMMPS data and input files for polymer molecular dynamics simulations',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
keywords=['LAMMPS', 'polymer', 'SMILES'],
url='https://github.com/Ramprasad-Group/NNMDKit',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=find_packages(),
zip_safe=False
)