-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
43 lines (27 loc) · 921 Bytes
/
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
39
40
41
42
43
"""A setuptools based setup module for bemio
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
setup(
name='python_scripts',
version='0.1',
description='Michael Lawson\'s Python scripts',
long_description='',
url='https://github.com/lawsonro3/python_scripts',
author='Michael Lawson',
author_email='[email protected]',
license='Apache 2.0',
classifiers=[
#'Development Status :: Release',
#'Intended Audience :: Ocean research community',
#'License :: OSI Approved :: Apache Software License 2.0 (Apache-2.0)',
'Programming Language :: Python :: 3'
],
keywords='python_scripts, Michael Lawson',
packages=find_packages(exclude=['doc', 'tutorials']),
install_requires=['numpy', 'scipy', 'matplotlib', 'pandas'],
extras_require={
'dev': [],
'test': [],
},
)