-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
32 lines (30 loc) · 942 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
29
30
31
32
"""
MDRestraintsGenerator
A framework for generating restraints for MD simulations
"""
from setuptools import setup, find_packages
import versioneer
with open('README.md', 'r') as handle:
long_description = handle.read()
setup(
# Self-descriptive entries which should always be present
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
name='MDRestraintsGenerator',
author='Irfan Alibay',
author_email='[email protected]',
description='Enabling the use of restraints in alchemical simulations',
long_description=long_description,
long_description_content_type='text/markdown',
license='LGPLv3',
url='https://github.com/IAlibay/MDRestraintsGenerator/',
packages=find_packages(),
include_package_data=True,
python_requires='>=3.8',
install_requires=[
'MDAnalysis>1.0.0',
'numpy',
'scipy<1.8',
'matplotlib',
],
)