setup.cfg 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. # =ynrc
  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 = numpy; scipy
  27. # The usage of test_requires is discouraged, see `Dependency Management` docs
  28. # tests_require = pytest; pytest-cov
  29. # Require a specific Python version, e.g. Python 2.7 or >= 3.4
  30. # python_requires = >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*
  31. [options.packages.find]
  32. where = ynrc
  33. [options.extras_require]
  34. # Add here additional requirements for extra features, to install with:
  35. # `pip install ynrc[PDF]` like:
  36. # PDF = ReportLab; RXP
  37. # Add here test requirements (semicolon/line-separated)
  38. testing =
  39. pytest
  40. pytest-cov
  41. [options.entry_points]
  42. # Add here console scripts like:
  43. # console_scripts =
  44. # script_name = ynrc.module:function
  45. # For example:
  46. # console_scripts =
  47. # fibonacci = ynrc.skeleton:run
  48. # And any other entry points, for example:
  49. # pyscaffold.cli =
  50. # awesome = pyscaffoldext.awesome.extension:AwesomeExtension
  51. console_scripts =
  52. weekly_report = ynrc.main:run
  53. [aliases]
  54. dists = bdist_wheel
  55. [bdist_wheel]
  56. # Use this option if your package is pure-python
  57. universal = 1
  58. [devpi:upload]
  59. # Options for the devpi: PyPI server and packaging tool
  60. # VCS export must be deactivated since we are using setuptools-scm
  61. no-vcs = 1
  62. formats = bdist_wheel
  63. [pyscaffold]
  64. # PyScaffold's parameters when the project was created.
  65. # This will be used when updating. Do not change!
  66. version = 3.3
  67. package = ynrc