Skip to content

Commit 5b12cb6

Browse files
committed
pypi test
1 parent a304eb0 commit 5b12cb6

File tree

7 files changed

+28
-52
lines changed

7 files changed

+28
-52
lines changed

.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,7 @@ examples/slided_test
1717

1818
build
1919
dist
20-
pIMZ.egg-info
20+
pIMZ.egg-info
21+
22+
docs/_build
23+
__pycache__

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ language: python
22
python:
33
- "3.8"
44
script:
5-
- python setup.py develop test
5+
- python3 setup.py develop test

MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
include README.rst CHANGELOG.txt LICENSE.txt
1+
include README.md CHANGELOG.txt LICENSE.txt
22
recursive-include pIMZ/tablefilter *

README.md

+10-16
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,11 @@
1-
---
2-
title: 'pIMZ: an integrative framework for imaging mass spectrometry analysis'
3-
---
1+
# pIMZ: an integrative framework for imaging mass spectrometry analysis
42

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)
169

1710
No idea what this framework does \...
1811

@@ -32,11 +25,12 @@ format it properly.
3225
Installation
3326
============
3427

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`:
3729

3830
$ sudo pip install pIMZ
3931
$ sudo pip3 install pIMZ
32+
33+
or on a user-level:
4034

4135
$ pip install pIMZ --user
4236
$ pip3 install pIMZ --user

README.rst

-30
This file was deleted.

setup.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,22 @@ def run_tests(self):
4141

4242
)
4343

44-
version = "1.0"
44+
version = "1.0a"
4545
import pathlib
4646

4747

4848
setup(name="pIMZ",
4949
version=version,
5050
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',
5253
classifiers=[ # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
5354
'Development Status :: 3 - Alpha',
5455
'Intended Audience :: Developers',
5556
'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',
5760
'Topic :: Scientific/Engineering :: Bio-Informatics',
5861
'Topic :: Scientific/Engineering :: Medical Science Apps.'
5962
],

upload.sh

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
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/*

0 commit comments

Comments
 (0)