forked from vlasenkov/nmrex
-
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) · 680 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 680 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
from distutils.core import setup
setup(
name='nmrex',
version='1.0.0',
description='Exploratory data science for NMR and structural biology',
author='Leonid Vlasenkov MIPT & IBCh',
url='https://github.com/vlasenkov/nmrex',
license='MIT',
packages=['nmrex'],
install_requires=[
'numpy',
'pandas>=0.19',
'biopython>=1.68',
'nmrstarlib>=1.1.0',
'lxml>=3.7.3',
],
entry_points={
'console_scripts': [
'nmrex.fetch = nmrex.scripts.fetch:main',
'nmrex.predict = nmrex.scripts.predict:main',
'nmrex.transform = nmrex.scripts.transform:main',
],
},
)