Mercurial > repos > sanbi-uwc > confil
annotate setup.py @ 3:53a61865e86e draft
planemo upload for repository https://github.com/COMBAT-TB/confil commit cb48efaef286f70c94607cb583a61bb9e3d71604
| author | sanbi-uwc | 
|---|---|
| date | Wed, 27 Feb 2019 06:20:05 -0500 | 
| parents | |
| children | eaf51f9aff10 | 
| 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', | 
| 
53a61865e86e
planemo upload for repository https://github.com/COMBAT-TB/confil commit cb48efaef286f70c94607cb583a61bb9e3d71604
 sanbi-uwc parents: diff
changeset | 8 version='0.0.1', | 
| 
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 ) | 
