A .builds/test.yml => .builds/test.yml +12 -0
@@ 0,0 1,12 @@
+image: alpine/edge
+
+sources:
+ - https://git.sr.ht/~thestr4ng3r/mymcplus
+
+packages:
+ - python3
+ - py3-pytest
+
+tasks:
+ - test: |
+ pytest
D .travis.yml => .travis.yml +0 -16
@@ 1,16 0,0 @@
-sudo: false
-language: python
-
-python:
- - '3.6'
-
-script:
- - pytest
-
-deploy:
- provider: pypi
- user: thestr4ng3r
- password:
- secure: cwyz5kvUk11rEDeSeInInbDy6QxERTexUZ/7sXRsXhw5GIBiY/NQTBSSWT0j8YHQW5os3N81hQZygu0fD8PxVQMplnSffMtKcwly2n3TAjI4iE+TTsJ6d1CABSRdB02SKcBDVAl1uT51m/nZADy9tn/Klj6uE2QCJUzHehWoBXXZtLNKiLcMy1dC0eFmefwM2kq+K1gV2Xmo4OikSya1SkBERswPxhnPZuUwWOpauOmRPeqiHODJFoJ/z2uKDunI8vFQpzVEEpOztuzhMAqlAgXgu0eNfKIvgJJxy+VN2roWGhNUJHZcnop3q1QqALg/Oz2iceMIM+Q7mqkg1vswStLwY8jvDchBs/UbnkSlglUw9NQ9pf4Ner89cO25vqfk+cXzBZbUre9E7s2YhasfMlqZ8pnjjrT7pRPQxpHkzLV0tC6YldfXJY/3jo/jPjb9WIlNsFZbSDQ5CWNvoRNXnamdJ7Q9lxg3xGMFVDw4Ix6v+WVi1r3cmrAR5rwO1X8x7vjNGKd4vMmUt8ioEFI2XbGalbjYGduaRwg2XN5sp+0EE9elNZO/t9caGdw7MgRHgXRBaLgWLLF9KvxFsgmTRbfALS5Kg9EWJKaN+zpD3QvwLTMXgxzbb1H4T58TRkkUT/68hRyVKr62lNT7jnBJJd3SYDdaLTravdxgRXTxYNI=
- on:
- tags: true
M README.md => README.md +6 -1
@@ 1,7 1,7 @@
# mymc+
-[](https://travis-ci.org/thestr4ng3r/mymcplus)
+[](https://builds.sr.ht/~thestr4ng3r/mymcplus)
mymc+ is a PlayStation 2 memory card manager for to be used with
.ps2 images as created by the PCSX2 emulator for example.
@@ 94,6 94,11 @@ mymcplus -i empty.ps2 format
creates the file `empty.ps2` and formats it as an empty memory card.
+## Contributing
+
+Send bug reports or patches using [git send-email](https://git-send-email.io/)
+to mymcplus@metallic.software.
+
## License
mymc+
M setup.py => setup.py +3 -1
@@ 27,7 27,7 @@ setup(
description="A PlayStation 2 memory card manager",
long_description=long_description,
long_description_content_type="text/plain",
- url="https://github.com/thestr4ng3r/mymcplus",
+ url="https://git.sr.ht/~thestr4ng3r/mymcplus",
author="Florian Märkl",
license="GPLv3",
clasifiers=[
@@ 49,6 49,8 @@ setup(
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
+ "Programming Language :: Python :: 3.8",
+ "Programming Language :: Python :: 3.9",
"Topic :: Games/Entertainment",
"Topic :: Multimedia :: Graphics :: 3D Rendering",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",