-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
32 lines (30 loc) · 1.03 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
#!/usr/bin/env python3
"""Setup file for NMRforMD package."""
# -*- Mode: python; tab-width: 4; indent-tabs-mode:nil; coding:utf-8 -*-
#
# Copyright (c) 2022 Authors and contributors
# Simon Gravelle
#
# Released under the GNU Public Licence, v3 or any higher version
# SPDX-License-Identifier: GPL-3.0-or-later
from setuptools import setup
setup(name='nmrformd',
version='0.1.1',
description='Calculate dipolar NMR relaxation time from \
molecular dynamics trajectory file',
long_description=open('LONG_DESCRIPTION.rst').read(),
long_description_content_type='text/x-rst',
url='https://github.com/simongravelle/nmrformd',
download_url='https://github.com/simongravelle/nmrformd/archive/refs/tags/0.1.1.tar.gz', # noqa
author='Simon Gravelle',
author_email='[email protected]',
license='GNU GENERAL PUBLIC LICENSE',
packages=['nmrformd'],
zip_safe=False,
install_requires=[
"mdanalysis",
"pytest",
"numpy",
"scipy",
]
)