setup.py 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. import os
  2. import setuptools
  3. with open('README.rst', 'r') as readme:
  4. LONG_DESCRIPTION = readme.read()
  5. setuptools.setup(
  6. name='pubmed-bibtex',
  7. use_scm_version={
  8. 'write_to': os.path.join('pubmed_bibtex', 'version.py'),
  9. # `version` triggers pylint C0103
  10. 'write_to_template': "__version__ = '{version}'\n",
  11. },
  12. description='Generate BibTeX Entries for PubMed Publications',
  13. long_description=LONG_DESCRIPTION,
  14. author='Fabian Peter Hammerle',
  15. author_email='fabian@hammerle.me',
  16. url='https://github.com/fphammerle/pubmed-bibtex',
  17. license='GPLv3+',
  18. keywords=[
  19. 'article',
  20. 'bibtex',
  21. 'citation',
  22. 'journal',
  23. 'latex',
  24. 'publication',
  25. 'pubmed',
  26. 'reference',
  27. 'research',
  28. 'tex',
  29. 'texmed',
  30. ],
  31. classifiers=[
  32. 'Development Status :: 4 - Beta',
  33. 'Intended Audience :: Healthcare Industry',
  34. 'Intended Audience :: Science/Research',
  35. 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
  36. 'Programming Language :: Python :: 3.5',
  37. 'Programming Language :: Python :: 3.6',
  38. 'Programming Language :: Python :: 3.7',
  39. 'Topic :: Scientific/Engineering :: Medical Science Apps.',
  40. 'Topic :: Utilities',
  41. ],
  42. packages=setuptools.find_packages(),
  43. entry_points={
  44. 'console_scripts': [
  45. 'pubmed-bibtex = pubmed_bibtex.__main__:main',
  46. ],
  47. },
  48. python_requires='>=3.5',
  49. install_requires=[
  50. 'requests>=2,<3',
  51. ],
  52. setup_requires=[
  53. 'setuptools_scm',
  54. ],
  55. tests_require=[
  56. 'pylint>=2.3.0,<3',
  57. 'pytest<5',
  58. 'pytest-cov<3,>=2',
  59. ],
  60. )