pyproject.toml 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. # Guide (user-friendly):
  2. # https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
  3. # Specification (technical, formal):
  4. # https://packaging.python.org/en/latest/specifications/pyproject-toml/
  5. # Choosing a build backend:
  6. # https://packaging.python.org/en/latest/tutorials/packaging-projects/#choosing-a-build-backend
  7. [build-system]
  8. # A list of packages that are needed to build your package:
  9. requires = ["setuptools"] # REQUIRED if [build-system] table is used
  10. # The name of the Python object that frontends will use to perform the build:
  11. build-backend = "setuptools.build_meta" # If not defined, then legacy behavior can happen.
  12. [project]
  13. # This is the name of your project. The first time you publish this
  14. # package, this name will be registered for you. It will determine how
  15. # users can install this project, e.g.:
  16. #
  17. # $ pip install sampleproject
  18. #
  19. # And where it will live on PyPI: https://pypi.org/project/sampleproject/
  20. #
  21. # There are some restrictions on what makes a valid project name
  22. # specification here:
  23. # https://packaging.python.org/specifications/core-metadata/#name
  24. name = "safeutils" # REQUIRED, is the only field that cannot be marked as dynamic.
  25. # Versions should comply with PEP 440:
  26. # https://www.python.org/dev/peps/pep-0440/
  27. #
  28. # For a discussion on single-sourcing the version, see
  29. # https://packaging.python.org/guides/single-sourcing-package-version/
  30. version = "0.0.1" # REQUIRED, although can be dynamic
  31. # This is a one-line description or tagline of what your project does. This
  32. # corresponds to the "Summary" metadata field:
  33. # https://packaging.python.org/specifications/core-metadata/#summary
  34. description = "SafeUtils: Native MacOS, Linux and Windows desktop application with 110+ carefully crafted tools for yours and your teams everyday work with sensitive data in various formats."
  35. # This is an optional longer description of your project that represents
  36. # the body of text which users will see when they visit PyPI.
  37. #
  38. # Often, this is the same as your README, so you can just read it in from
  39. # that file directly.
  40. #
  41. # This field corresponds to the "Description" metadata field:
  42. # https://packaging.python.org/specifications/core-metadata/#description-optional
  43. readme = "README.md"
  44. # Specify which Python versions you support. In contrast to the
  45. # 'Programming Language' classifiers in this file, 'pip install' will check this
  46. # and refuse to install the project if the version does not match. See
  47. # https://packaging.python.org/guides/distributing-packages-using-setuptools/#python-requires
  48. requires-python = ">=3.8"
  49. # This is either text indicating the license for the distribution, or a file
  50. # that contains the license.
  51. # https://packaging.python.org/en/latest/specifications/core-metadata/#license
  52. license = {file = "LICENSE.md"}
  53. # This field adds keywords for your project which will appear on the
  54. # project page. What does your project relate to?
  55. #
  56. # Note that this is a list of additional keywords, separated
  57. # by commas, to be used to assist searching for the distribution in a
  58. # larger catalog.
  59. keywords = ["developer-tools", "data-security", "data-privacy"]
  60. # This should be your name or the name of the organization who originally
  61. # authored the project, and a valid email address corresponding to the name
  62. # listed.
  63. authors = [
  64. {name = "Wiktor Plaga", email = "wiktor.plaga@tzif.io" }
  65. ]
  66. # This should be your name or the names of the organization who currently
  67. # maintains the project, and a valid email address corresponding to the name
  68. # listed.
  69. maintainers = [
  70. {name = "Wiktor Plaga", email = "wiktor.plaga@tzif.io" }
  71. ]
  72. # Classifiers help users find your project by categorizing it.
  73. #
  74. # For a list of valid classifiers, see https://pypi.org/classifiers/
  75. classifiers = [
  76. # How mature is this project? Common values are
  77. # 3 - Alpha
  78. # 4 - Beta
  79. # 5 - Production/Stable
  80. "Development Status :: 5 - Production/Stable",
  81. "Operating System :: MacOS",
  82. "Operating System :: Microsoft :: Windows",
  83. "Operating System :: Unix",
  84. # Indicate who your project is intended for
  85. "Intended Audience :: Developers",
  86. "Intended Audience :: End Users/Desktop",
  87. "Intended Audience :: Information Technology",
  88. "Intended Audience :: System Administrators",
  89. # Pick your license as you wish
  90. "License :: Other/Proprietary License",
  91. "Natural Language :: English",
  92. # Specify the Python versions you support here. In particular, ensure
  93. # that you indicate you support Python 3. These classifiers are *not*
  94. # checked by "pip install". See instead "requires-python" key in this file.
  95. "Programming Language :: JavaScript",
  96. "Programming Language :: Rust",
  97. "Programming Language :: Python :: 3",
  98. "Programming Language :: Python :: 3.8",
  99. "Programming Language :: Python :: 3.9",
  100. "Programming Language :: Python :: 3.10",
  101. "Programming Language :: Python :: 3.11",
  102. "Programming Language :: Python :: 3.12",
  103. "Programming Language :: Python :: 3 :: Only",
  104. "Topic :: Security",
  105. "Topic :: Software Development"
  106. ]
  107. # This field lists other packages that your project depends on to run.
  108. # Any package you put here will be installed by pip when your project is
  109. # installed, so they must be valid existing projects.
  110. #
  111. # For an analysis of this field vs pip's requirements files see:
  112. # https://packaging.python.org/discussions/install-requires-vs-requirements/
  113. dependencies = []
  114. # List additional groups of dependencies here (e.g. development
  115. # dependencies). Users will be able to install these using the "extras"
  116. # syntax, for example:
  117. #
  118. # $ pip install sampleproject[dev]
  119. #
  120. # Optional dependencies the project provides. These are commonly
  121. # referred to as "extras". For a more extensive definition see:
  122. # https://packaging.python.org/en/latest/specifications/dependency-specifiers/#extras
  123. [project.optional-dependencies]
  124. dev = []
  125. test = []
  126. # List URLs that are relevant to your project
  127. #
  128. # This field corresponds to the "Project-URL" and "Home-Page" metadata fields:
  129. # https://packaging.python.org/specifications/core-metadata/#project-url-multiple-use
  130. # https://packaging.python.org/specifications/core-metadata/#home-page-optional
  131. #
  132. # Examples listed include a pattern for specifying where the package tracks
  133. # issues, where the source is hosted, where to say thanks to the package
  134. # maintainers, and where to support the project financially. The key is
  135. # what's used to render the link text on PyPI.
  136. [project.urls]
  137. "Homepage" = "https://safeutils.com"
  138. "Bug Reports" = "https://safeutils.com/contact"
  139. "Funding" = "https://safeutils.com/pricing"
  140. "Say Thanks!" = "https://safeutils.com/review"
  141. "Source" = "https://github.com/safe-utils/safeutils"
  142. # The following would provide a command line executable called `sample`
  143. # which executes the function `main` from this package when invoked.
  144. # [project.scripts]
  145. # sample = "sample:main"
  146. # This is configuration specific to the `setuptools` build backend.
  147. # If you are using a different build backend, you will need to change this.
  148. [tool.setuptools]
  149. # If there are data files included in your packages that need to be
  150. # installed, specify them here.
  151. # package-data = {"sample" = ["*.dat"]}