Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
ICARTT Python Package
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
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
MBEES
ICARTT Python Package
Commits
4d913a6a
Commit
4d913a6a
authored
3 years ago
by
Christoph Knote
Browse files
Options
Downloads
Patches
Plain Diff
Correct setup.py, add installation instructions to README
parent
e8831b80
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+8
-1
8 additions, 1 deletion
README.md
setup.py
+4
-5
4 additions, 5 deletions
setup.py
with
12 additions
and
6 deletions
README.md
+
8
−
1
View file @
4d913a6a
...
...
@@ -6,7 +6,7 @@ icartt
Documentation
=============
.. include::
docs/source/usage.rst
Please have a look at
docs/source/usage.rst
for usage examples. Full documentation is in preparation.
Contributing
============
...
...
@@ -20,3 +20,10 @@ make your changes and then [submit a merge request](https://mbees.med.uni-augsbu
Installation
============
Clone this repository / or your fork and install as "editable":
```
git clone https://mbees.med.uni-augsburg.de/gitlab/mbees/icartt_pypackage.git or <URL of your fork>
cd icartt_pypackage
pip install -e .
```
This diff is collapsed.
Click to expand it.
setup.py
+
4
−
5
View file @
4d913a6a
...
...
@@ -7,12 +7,12 @@ def read(filename):
setup
(
name
=
'
icartt
'
,
description
=
'
ICARTT format reader and writer
'
,
long_description
=
read
(
'
README.
rst
'
)
+
'
\n\n
'
+
read
(
'
INSTALL.rst
'
)
+
'
\n\n
'
+
read
(
'
CHANGES.rst
'
),
long_description
=
read
(
'
README.
md
'
)
+
'
\n\n
'
+
read
(
'
INSTALL.rst
'
)
+
'
\n\n
'
+
read
(
'
CHANGES.rst
'
),
long_description_content_type
=
'
text/markdown
'
,
version
=
'
1.
0
.1
'
,
url
=
'
https://
boxmodeling.meteo.physik.uni-muenchen
.de
'
,
version
=
'
1.
9
.1
'
,
url
=
'
https://
mbees.med.uni-augsburg
.de
'
,
author
=
'
Christoph Knote
'
,
author_email
=
'
christoph.knote@
physik.uni-muenchen
.de
'
,
author_email
=
'
christoph.knote@
med.uni-augsburg
.de
'
,
license
=
'
GPLv3
'
,
classifiers
=
[
'
Development Status :: 5 - Production/Stable
'
,
...
...
@@ -23,7 +23,6 @@ setup(name='icartt',
'
Intended Audience :: Science/Research
'
,
'
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
'
,
'
Operating System :: POSIX
'
,
'
Programming Language :: Python :: 2
'
,
'
Programming Language :: Python :: 3
'
,
'
Topic :: Education
'
,
'
Topic :: Scientific/Engineering
'
,
...
...
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