annotate setup.py @ 7:96c8c5cada47 draft

planemo upload for repository https://github.com/COMBAT-TB/confil commit 18a08ba3ab742326c8f60a8566c49652e1b8f4c7
author sanbi-uwc
date Thu, 07 Mar 2019 07:12:34 -0500
parents 2b90d0574ea5
children 5ec97cccb3fe
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3
53a61865e86e planemo upload for repository https://github.com/COMBAT-TB/confil commit cb48efaef286f70c94607cb583a61bb9e3d71604
sanbi-uwc
parents:
diff changeset
1 from setuptools import find_packages, setup
53a61865e86e planemo upload for repository https://github.com/COMBAT-TB/confil commit cb48efaef286f70c94607cb583a61bb9e3d71604
sanbi-uwc
parents:
diff changeset
2
53a61865e86e planemo upload for repository https://github.com/COMBAT-TB/confil commit cb48efaef286f70c94607cb583a61bb9e3d71604
sanbi-uwc
parents:
diff changeset
3 with open("README.md", "r") as fh:
53a61865e86e planemo upload for repository https://github.com/COMBAT-TB/confil commit cb48efaef286f70c94607cb583a61bb9e3d71604
sanbi-uwc
parents:
diff changeset
4 long_description = fh.read()
53a61865e86e planemo upload for repository https://github.com/COMBAT-TB/confil commit cb48efaef286f70c94607cb583a61bb9e3d71604
sanbi-uwc
parents:
diff changeset
5
53a61865e86e planemo upload for repository https://github.com/COMBAT-TB/confil commit cb48efaef286f70c94607cb583a61bb9e3d71604
sanbi-uwc
parents:
diff changeset
6 setup(
53a61865e86e planemo upload for repository https://github.com/COMBAT-TB/confil commit cb48efaef286f70c94607cb583a61bb9e3d71604
sanbi-uwc
parents:
diff changeset
7 name='confil',
6
2b90d0574ea5 planemo upload for repository https://github.com/COMBAT-TB/confil commit c84738cfc4876c591d7108229038a4001f836afb
sanbi-uwc
parents: 4
diff changeset
8 version='0.1.3',
3
53a61865e86e planemo upload for repository https://github.com/COMBAT-TB/confil commit cb48efaef286f70c94607cb583a61bb9e3d71604
sanbi-uwc
parents:
diff changeset
9 url='https://github.com/COMBAT-TB/confil',
53a61865e86e planemo upload for repository https://github.com/COMBAT-TB/confil commit cb48efaef286f70c94607cb583a61bb9e3d71604
sanbi-uwc
parents:
diff changeset
10 description='Contamination filter',
53a61865e86e planemo upload for repository https://github.com/COMBAT-TB/confil commit cb48efaef286f70c94607cb583a61bb9e3d71604
sanbi-uwc
parents:
diff changeset
11 long_description=long_description,
53a61865e86e planemo upload for repository https://github.com/COMBAT-TB/confil commit cb48efaef286f70c94607cb583a61bb9e3d71604
sanbi-uwc
parents:
diff changeset
12 long_description_content_type="text/markdown",
53a61865e86e planemo upload for repository https://github.com/COMBAT-TB/confil commit cb48efaef286f70c94607cb583a61bb9e3d71604
sanbi-uwc
parents:
diff changeset
13 keywords='contamination, filter',
53a61865e86e planemo upload for repository https://github.com/COMBAT-TB/confil commit cb48efaef286f70c94607cb583a61bb9e3d71604
sanbi-uwc
parents:
diff changeset
14 py_modules=['confil'],
53a61865e86e planemo upload for repository https://github.com/COMBAT-TB/confil commit cb48efaef286f70c94607cb583a61bb9e3d71604
sanbi-uwc
parents:
diff changeset
15 packages=find_packages(),
53a61865e86e planemo upload for repository https://github.com/COMBAT-TB/confil commit cb48efaef286f70c94607cb583a61bb9e3d71604
sanbi-uwc
parents:
diff changeset
16 include_package_data=True,
53a61865e86e planemo upload for repository https://github.com/COMBAT-TB/confil commit cb48efaef286f70c94607cb583a61bb9e3d71604
sanbi-uwc
parents:
diff changeset
17 install_requires=[
53a61865e86e planemo upload for repository https://github.com/COMBAT-TB/confil commit cb48efaef286f70c94607cb583a61bb9e3d71604
sanbi-uwc
parents:
diff changeset
18 'click'
53a61865e86e planemo upload for repository https://github.com/COMBAT-TB/confil commit cb48efaef286f70c94607cb583a61bb9e3d71604
sanbi-uwc
parents:
diff changeset
19 ],
53a61865e86e planemo upload for repository https://github.com/COMBAT-TB/confil commit cb48efaef286f70c94607cb583a61bb9e3d71604
sanbi-uwc
parents:
diff changeset
20 entry_points={
53a61865e86e planemo upload for repository https://github.com/COMBAT-TB/confil commit cb48efaef286f70c94607cb583a61bb9e3d71604
sanbi-uwc
parents:
diff changeset
21 'console_scripts': ['confil=confil.confil:confil']
53a61865e86e planemo upload for repository https://github.com/COMBAT-TB/confil commit cb48efaef286f70c94607cb583a61bb9e3d71604
sanbi-uwc
parents:
diff changeset
22 },
53a61865e86e planemo upload for repository https://github.com/COMBAT-TB/confil commit cb48efaef286f70c94607cb583a61bb9e3d71604
sanbi-uwc
parents:
diff changeset
23 )