Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Create setup.py by poetry
· 7bf4eccd
Andreas Tille
authored
Dec 21, 2018
7bf4eccd
Override false positive
· e3a203c8
Andreas Tille
authored
Dec 21, 2018
e3a203c8
Show whitespace changes
Inline
Side-by-side
debian/lintian-overrides
0 → 100644
View file @
e3a203c8
# 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 → 100644
View file @
e3a203c8
setup.py.patch
debian/patches/setup.py.patch
0 → 100644
View file @
e3a203c8
Author: Andreas Tille <tille@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@uga.edu',
+ 'url': None,
+ 'packages': packages,
+ 'package_data': package_data,
+ 'entry_points': entry_points,
+ 'python_requires': '>=3.5,<4.0',
+}
+
+
+setup(**setup_kwargs)