-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 961 Bytes
/
Copy pathsetup.py
File metadata and controls
34 lines (31 loc) · 961 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
27
28
29
30
31
32
33
34
#!/usr/bin/env python
# setup script for estp
#
# Copyright (C) 2015 Donghan Lee
# http://www.bionmr.org
# License: BSD (See LICENSE for full license)
#
# $Date$
from distutils.core import setup
setup(
name='estp',
version='1.0',
author = 'Donghan Lee and Marta G. Carneiro',
author_email = 'dlee@bionmr.org',
packages=['estp'],
license = 'New BSD License',
url = 'http://www.bionmr.org',
description = 'A program for CEST and DEST experiment',
long_description = open('README').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'
]
)