setup.cfg 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. # This file is used to configure your project.
  2. # Read more about the various options under:
  3. # http://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files
  4. [metadata]
  5. name = ynrc
  6. description = Add a short description here!
  7. author = Nikola Kotur
  8. author-email = kotnick@gmail.com
  9. license = mit
  10. long-description = file: README.md
  11. platforms = any
  12. # Add here all kinds of additional classifiers as defined under
  13. # https://pypi.python.org/pypi?%3Aaction=list_classifiers
  14. classifiers =
  15. Development Status :: 4 - Beta
  16. Programming Language :: Python
  17. [options]
  18. zip_safe = False
  19. packages = find:
  20. include_package_data = True
  21. package_dir =
  22. =src
  23. # DON'T CHANGE THE FOLLOWING LINE! IT WILL BE UPDATED BY PYSCAFFOLD!
  24. setup_requires = pyscaffold>=3.3a0,<4
  25. # Add here dependencies of your project (semicolon/line-separated), e.g.
  26. install_requires = hammock==0.2.4; requests==2.25.1
  27. # Require a specific Python version, e.g. Python 2.7 or >= 3.4
  28. # python_requires = >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*
  29. [options.packages.find]
  30. where = ynrc
  31. [options.extras_require]
  32. # Add here additional requirements for extra features, to install with:
  33. # `pip install ynrc[PDF]` like:
  34. # PDF = ReportLab; RXP
  35. # Add here test requirements (semicolon/line-separated)
  36. testing =
  37. pytest
  38. pytest-cov
  39. [options.entry_points]
  40. # Add here console scripts like:
  41. # console_scripts =
  42. # script_name = ynrc.module:function
  43. # For example:
  44. # console_scripts =
  45. # fibonacci = ynrc.skeleton:run
  46. # And any other entry points, for example:
  47. # pyscaffold.cli =
  48. # awesome = pyscaffoldext.awesome.extension:AwesomeExtension
  49. console_scripts =
  50. weekly_report = ynrc.main:run
  51. [aliases]
  52. dists = bdist_wheel
  53. [bdist_wheel]
  54. # Use this option if your package is pure-python
  55. universal = 1
  56. [devpi:upload]
  57. # Options for the devpi: PyPI server and packaging tool
  58. # VCS export must be deactivated since we are using setuptools-scm
  59. no-vcs = 1
  60. formats = bdist_wheel
  61. [pyscaffold]
  62. # PyScaffold's parameters when the project was created.
  63. # This will be used when updating. Do not change!
  64. version = 3.3
  65. package = ynrc