File tree 7 files changed +28
-52
lines changed
7 files changed +28
-52
lines changed Original file line number Diff line number Diff line change @@ -17,4 +17,7 @@ examples/slided_test
17
17
18
18
build
19
19
dist
20
- pIMZ.egg-info
20
+ pIMZ.egg-info
21
+
22
+ docs /_build
23
+ __pycache__
Original file line number Diff line number Diff line change @@ -2,4 +2,4 @@ language: python
2
2
python :
3
3
- " 3.8"
4
4
script :
5
- - python setup.py develop test
5
+ - python3 setup.py develop test
Original file line number Diff line number Diff line change 1
- include README.rst CHANGELOG.txt LICENSE.txt
1
+ include README.md CHANGELOG.txt LICENSE.txt
2
2
recursive-include pIMZ/tablefilter *
Original file line number Diff line number Diff line change 1
- ---
2
- title : ' pIMZ: an integrative framework for imaging mass spectrometry analysis'
3
- ---
1
+ # pIMZ: an integrative framework for imaging mass spectrometry analysis
4
2
5
- ![ image] ( https://readthedocs.org/projects/pimz/badge/?version=latest )
6
-
7
- target
8
-
9
- : < https://pimz.readthedocs.io/en/latest/?badge=latest >
10
-
11
- alt
12
-
13
- : Documentation Status
14
-
15
- [ ![ image] ( https://travis-ci.org/mjoppich/pIMZ.svg?branch=master )] ( https://travis-ci.org/mjoppich/pIMZ )
3
+ [ ![ Documentation Status] ( https://readthedocs.org/projects/pimz/badge/?version=latest )] ( https://pimz.readthedocs.io/en/latest/?badge=latest )
4
+ [ ![ Build Status] ( https://travis-ci.org/mjoppich/pIMZ.svg?branch=master )] ( https://travis-ci.org/mjoppich/pIMZ )
5
+ ![ PyPI] ( https://img.shields.io/pypi/v/pIMZ )
6
+ ![ GitHub All Releases] ( https://img.shields.io/github/downloads/mjoppich/pIMZ/total )
7
+ ![ PyPI - Python Version] ( https://img.shields.io/pypi/pyversions/pIMZ )
8
+ ![ PyPI - License] ( https://img.shields.io/pypi/l/pIMZ )
16
9
17
10
No idea what this framework does \. ..
18
11
@@ -32,11 +25,12 @@ format it properly.
32
25
Installation
33
26
============
34
27
35
- The easiest way to install most Python packages is via ` easy_install ` or
36
- ` pip ` :
28
+ The easiest way to install is via ` pip ` :
37
29
38
30
$ sudo pip install pIMZ
39
31
$ sudo pip3 install pIMZ
32
+
33
+ or on a user-level:
40
34
41
35
$ pip install pIMZ --user
42
36
$ pip3 install pIMZ --user
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -41,19 +41,22 @@ def run_tests(self):
41
41
42
42
)
43
43
44
- version = "1.0 "
44
+ version = "1.0a "
45
45
import pathlib
46
46
47
47
48
48
setup (name = "pIMZ" ,
49
49
version = version ,
50
50
description = "pIMZ: an integrative framework for imaging mass spectrometry analysis" ,
51
- long_description = open ("README.rst" ).read (),
51
+ long_description = open ("README.md" ).read (),
52
+ long_description_content_type = 'text/markdown' ,
52
53
classifiers = [ # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
53
54
'Development Status :: 3 - Alpha' ,
54
55
'Intended Audience :: Developers' ,
55
56
'Programming Language :: Python' ,
56
- 'Programming Language :: Python :: 3' ,
57
+ 'Programming Language :: Python :: 3 :: Only' ,
58
+ 'Programming Language :: Python :: 3.8' ,
59
+ 'Programming Language :: Python :: 3.9' ,
57
60
'Topic :: Scientific/Engineering :: Bio-Informatics' ,
58
61
'Topic :: Scientific/Engineering :: Medical Science Apps.'
59
62
],
Original file line number Diff line number Diff line change
1
+ # python3 setup.py register sdist upload
2
+
3
+ rm -rf dist
4
+ python setup.py sdist
5
+ twine upload -r testpypi dist/*
6
+ # twine upload dist/*
You can’t perform that action at this time.
0 commit comments