Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
thopri
PyNEMO
Commits
2469f254
Commit
2469f254
authored
5 years ago
by
James Harle
Browse files
Options
Download
Email Patches
Plain Diff
Adding updated setup files
parent
3934705a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
63 additions
and
0 deletions
+63
-0
setup.cfg
setup.cfg
+2
-0
setup.py
setup.py
+61
-0
No files found.
setup.cfg
0 → 100644
View file @
2469f254
[bdist_wheel]
python-tag = py27
\ No newline at end of file
This diff is collapsed.
Click to expand it.
setup.py
0 → 100644
View file @
2469f254
from
setuptools
import
setup
,
find_packages
from
codecs
import
open
from
os
import
path
here
=
path
.
abspath
(
path
.
dirname
(
__file__
))
with
open
(
path
.
join
(
here
,
'DESCRIPTION.rst'
),
encoding
=
'utf-8'
)
as
f
:
long_description
=
f
.
read
()
setup
(
name
=
'pynemo'
,
version
=
'0.1.0'
,
description
=
'NEMO Regional Configuration Toolbox'
,
long_description
=
long_description
,
#The project's main homepage
url
=
'https://github.com/jdha/PyNEMO'
,
#Author details
author
=
'James Harle, Srikanth Nagella, Shirley Crompton'
,
author_email
=
'jdha@noc.ac.uk'
,
#Choose your license
license
=
'GPL'
,
classifiers
=
[
'Development Status :: 3 - Alpha'
,
'Intended Audience :: Developers'
,
'Topic :: Oceonography Modelling'
,
'License :: OSI Approved :: GPL License'
,
#Specify the python versions supported
'Programming Language :: Python :: 2.7'
],
keywords
=
'Oceanography, NEMO'
,
packages
=
[
'pynemo'
,
'pynemo.tests'
,
'pynemo.gui'
,
'pynemo.utils'
,
'pynemo.tide'
,
'pynemo.reader'
],
install_requires
=
[
'netCDF4>=1.1.9'
,
'scipy'
,
'numpy'
,
'matplotlib'
,
'basemap'
,
'thredds_crawler'
,
'seawater'
],
include_package_data
=
True
,
#The data files that needs to be included in packaging
package_data
=
{
''
:
[
'gui/*.png'
,
'gui/*.ncml'
,
'*.info'
,
'reader/jars/*.jar'
],
},
#If files are needs outside the installed packages
data_files
=
[],
entry_points
=
{
'console_scripts'
:[
'pynemo=pynemo.pynemo_exe:main'
,
'pynemo_settings_editor=pynemo.pynemo_settings_editor:main'
,
'pynemo_ncml_generator=pynemo.pynemo_ncml_generator:main'
],
},
)
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment