Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
UW-Glance
Manage
Activity
Members
Labels
Plan
Issues
28
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eva Schiffer
UW-Glance
Commits
6599be13
Commit
6599be13
authored
1 year ago
by
Eva Schiffer
Browse files
Options
Downloads
Patches
Plain Diff
moving from setup.py to pyproject.toml
parent
bfd520fe
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pyproject.toml
+58
-0
58 additions, 0 deletions
pyproject.toml
source/setup.py
+0
-32
0 additions, 32 deletions
source/setup.py
with
58 additions
and
32 deletions
pyproject.toml
0 → 100644
+
58
−
0
View file @
6599be13
# For developer install:
# pip install -e .
#
# For building :
# python -m build -s
# (cd dist; rsync -Cuav * webaccess.ssec.wisc.edu:/webdata/web/larch/htdocs/eggs/repos/uwglance)
#
# For user install:
# pip install -vi https://larch.ssec.wisc.edu/eggs/repos uwglance
[project]
name
=
"uwglance"
version
=
"0.7.0"
description
=
"Data analysis, visualization, and comparison tool"
readme
=
"README.md"
requires-python
=
">
=
3.9
"
keywords
=
[
"comparison"
,
"visualization"
,
]
authors
=
[
{name
=
"Eva Schiffer"
}
,
{name
=
"Ray Garcia"
}
]
maintainers
=
[
{name
=
"Eva Schiffer"
,
email
=
"eva.schiffer@ssec.wisc.edu"
}
]
dependencies
=
[
'numpy'
,
'matplotlib'
,
'cartopy'
,
'scipy'
,
'mako'
,
'pillow'
,
]
[project.optional-dependencies]
glance
=
[
"pyqt"
,
"netcdf4"
,
"h5py"
,
"gdal"
,
]
[project.urls]
Documentation
=
"https://gitlab.ssec.wisc.edu/evas/UW-Glance/-/wikis/home"
Repository
=
"https://gitlab.ssec.wisc.edu/evas/UW-Glance/"
Changelog
=
"https://gitlab.ssec.wisc.edu/evas/UW-Glance/-/wikis/release-notes"
[project.scripts]
glance
=
"glance.compare:main"
[build-system]
requires
=
[
"setuptools"
]
build-backend
=
"setuptools.build_meta"
[tool.setuptools]
include-package-data
=
true
[tool.setuptools.packages.find]
where
=
[
"source"
]
This diff is collapsed.
Click to expand it.
source/setup.py
deleted
100644 → 0
+
0
−
32
View file @
bfd520fe
#!/usr/bin/env python
"""
$Id$
see http://peak.telecommunity.com/DevCenter/setuptools
developer install:
(If you want to develop this code and run from code on the command line, please run the
following line in the source directory when you update to a new version of the code.)
pip install -e .
distribution:
python setup.py develop
python setup.py sdist
python setup.py bdist_egg
(cd dist; rsync -Cuav * webaccess.ssec.wisc.edu:/webdata/web/larch/htdocs/eggs/repos/uwglance)
use:
pip install -vi https://larch.ssec.wisc.edu/eggs/repos uwglance
"""
# changed to support egg distribution
from
setuptools
import
setup
setup
(
name
=
"
uwglance
"
,
version
=
"
0.7.0
"
,
zip_safe
=
False
,
entry_points
=
{
'
console_scripts
'
:
[
'
glance = glance.compare:main
'
]
},
packages
=
[
'
glance
'
],
install_requires
=
[
'
numpy
'
,
'
matplotlib
'
,
'
cartopy
'
,
'
scipy
'
,
'
mako
'
,
'
pillow
'
,
],
package_data
=
{
''
:
[
'
*.txt
'
,
'
*.gif
'
]}
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment