forked from jjhelmus/nmrglue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 1.05 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
33
34
35
#!/usr/bin/env python
# setup script for nmrglue
#
# Copyright (C) 2010 Jonathan Helmus
# http://code.google.com/p/nmrglue
# License: BSD (See LICENSE.txt for full license)
#
# $Date$
from distutils.core import setup
setup(
name='nmrglue',
version='0.5-dev',
author='Jonathan J. Helmus',
author_email='[email protected]',
packages=['nmrglue', 'nmrglue.fileio', 'nmrglue.analysis',
'nmrglue.process', 'nmrglue.util'],
license='New BSD License',
url='http://code.google.com/p/nmrglue',
description='A module for working with NMR data in Python',
long_description=open('README.txt').read(),
requires=['numpy', 'scipy'],
classifiers=[
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux'
]
)