Mercurial > repos > sanbi-uwc > confil
comparison 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 | 
   comparison
  equal
  deleted
  inserted
  replaced
| 2:ca3c6f955c3e | 3:53a61865e86e | 
|---|---|
| 1 from setuptools import find_packages, setup | |
| 2 | |
| 3 with open("README.md", "r") as fh: | |
| 4 long_description = fh.read() | |
| 5 | |
| 6 setup( | |
| 7 name='confil', | |
| 8 version='0.0.1', | |
| 9 url='https://github.com/COMBAT-TB/confil', | |
| 10 description='Contamination filter', | |
| 11 long_description=long_description, | |
| 12 long_description_content_type="text/markdown", | |
| 13 keywords='contamination, filter', | |
| 14 py_modules=['confil'], | |
| 15 packages=find_packages(), | |
| 16 include_package_data=True, | |
| 17 install_requires=[ | |
| 18 'click' | |
| 19 ], | |
| 20 entry_points={ | |
| 21 'console_scripts': ['confil=confil.confil:confil'] | |
| 22 }, | |
| 23 ) | 
