-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (34 loc) · 1.14 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
36
37
38
from setuptools import setup, find_packages
setup(
name='pyNADA',
version='0.0.1.dev1',
description='This python program is an attempt to '
'translate the R function ros from the package NADA '
'(Lee 2013) into python 2.',
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Atmospheric Science',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Mathematics'
],
author='James Durant',
author_email='jamesdrenda@charter.net',
install_requires=['numpy', 'scipy'],
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts' : [
'pyNADA = pyNADA.entry.main:main'
],
'pyNADA.cmdline' : [
'ros = pyNADA.ros:ROSEntry'
]
}
)