[med-svn] [Git][med-team/salmid][master] 2 commits: Create setup.py by poetry

Andreas Tille gitlab at salsa.debian.org
Fri Dec 21 16:38:57 GMT 2018


Andreas Tille pushed to branch master at Debian Med / salmid


Commits:
7bf4eccd by Andreas Tille at 2018-12-21T16:27:41Z
Create setup.py by poetry

- - - - -
e3a203c8 by Andreas Tille at 2018-12-21T16:32:59Z
Override false positive

- - - - -


3 changed files:

- + debian/lintian-overrides
- + debian/patches/series
- + debian/patches/setup.py.patch


Changes:

=====================================
debian/lintian-overrides
=====================================
@@ -0,0 +1,2 @@
+# punctuation is correct
+salmid: description-synopsis-might-not-be-phrased-properly "rapid confirmation of Salmonella spp. and subspp. from sequence data"


=====================================
debian/patches/series
=====================================
@@ -0,0 +1 @@
+setup.py.patch


=====================================
debian/patches/setup.py.patch
=====================================
@@ -0,0 +1,47 @@
+Author: Andreas Tille <tille at debian.org>
+Last-Update: Fri, 21 Dec 2018 17:09:43 +0100
+Description: Create by poetry
+ Installed poetry first via
+    curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python
+    sed -i '1s/python/python3/' ~/.poetry/bin/poetry
+    ~/.poetry/bin/poetry build
+Building salmid (0.1.23)
+ - Building sdist
+ - Built salmid-0.1.23.tar.gz
+
+ - Building wheel
+ - Built salmid-0.1.23-py3-none-any.whl
+.
+ The created tarball contained this setup.py script
+
+--- /dev/null
++++ b/setup.py
+@@ -0,0 +1,28 @@
++# -*- coding: utf-8 -*-
++from distutils.core import setup
++
++packages = \
++['salmid']
++
++package_data = \
++{'': ['*']}
++
++entry_points = \
++{'console_scripts': ['SalmID.py = salmid.core:main']}
++
++setup_kwargs = {
++    'name': 'salmid',
++    'version': '0.1.23',
++    'description': 'Rapid tool to check taxonomic ID of single isolate samples. Currently only IDs Salmonella species and subspecies, and some common contaminants (Listeria, Escherichia).',
++    'long_description': None,
++    'author': 'Henk den Bakker',
++    'author_email': 'hcd82599 at uga.edu',
++    'url': None,
++    'packages': packages,
++    'package_data': package_data,
++    'entry_points': entry_points,
++    'python_requires': '>=3.5,<4.0',
++}
++
++
++setup(**setup_kwargs)



View it on GitLab: https://salsa.debian.org/med-team/salmid/compare/01f8c384eb8d8656455c5891542a4bc3091847ba...e3a203c8ff907824786912422f119552ab4aa310

-- 
View it on GitLab: https://salsa.debian.org/med-team/salmid/compare/01f8c384eb8d8656455c5891542a4bc3091847ba...e3a203c8ff907824786912422f119552ab4aa310
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/debian-med-commit/attachments/20181221/7c7658ae/attachment-0001.html>


More information about the debian-med-commit mailing list