-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (29 loc) · 1.17 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
from setuptools import setup
exec(open('Martinoid/version.py').read())
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='Martinoid',
version=__version__,
description='This module was inspired by martinize (http://cgmartini.nl/index.php/tools2/proteins-and-bilayers/204-martinize) and has been created to perform automatic topology building of peptoids within the MARTINI forcefield (v2.1) in the GROMACS program.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Hamish-cmyk/MartinoidPeptoidCG',
author='Hamish W. A. Swanson, Alexander van Teijlingen',
author_email='[email protected]',
license='BSD 2-clause',
packages=['Martinoid'],
install_requires=['ase',
'pandas',
'numpy',
'mdtraj',
'matplotlib',
'argparse'
],
classifiers=[
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.10',
],
include_package_data=True
)