|
1 | 1 | [metadata] |
| 2 | +name = tuf |
| 3 | +version = 0.19.0 |
| 4 | +author = https://www.updateframework.com |
| 5 | + |
| 6 | +description = A secure updater framework for Python |
| 7 | +long_description = file: README.md |
| 8 | +long_description_content_type = text/markdown |
| 9 | +url = https://www.updateframework.com |
| 10 | +project_urls = |
| 11 | + Documentation = https://theupdateframework.readthedocs.io/en/stable/ |
| 12 | + Issues = https://github.com/theupdateframework/python-tuf/issues |
| 13 | + Source = https://github.com/theupdateframework/python-tuf |
| 14 | +classifiers = |
| 15 | + Development Status :: 4 - Beta |
| 16 | + Intended Audience :: Developers |
| 17 | + License :: OSI Approved :: MIT License |
| 18 | + License :: OSI Approved :: Apache Software License |
| 19 | + Operating System :: POSIX |
| 20 | + Operating System :: POSIX :: Linux |
| 21 | + Operating System :: MacOS :: MacOS X |
| 22 | + Operating System :: Microsoft :: Windows |
| 23 | + Programming Language :: Python :: 3 |
| 24 | + Programming Language :: Python :: 3.6 |
| 25 | + Programming Language :: Python :: 3.7 |
| 26 | + Programming Language :: Python :: 3.8 |
| 27 | + Programming Language :: Python :: 3.9 |
| 28 | + Programming Language :: Python :: 3.10 |
| 29 | + Programming Language :: Python :: Implementation :: CPython |
| 30 | + Topic :: Security |
| 31 | + Topic :: Software Development |
| 32 | +keywords = update updater secure authentication key compromise revocation |
2 | 33 | license_files = LICENSE LICENSE-MIT |
3 | 34 |
|
| 35 | +[options] |
| 36 | +packages = find: |
| 37 | +scripts = |
| 38 | + tuf/scripts/repo.py |
| 39 | + tuf/scripts/client.py |
| 40 | +python_requires = ~=3.6 |
| 41 | +install_requires = |
| 42 | + requests>=2.19.1 |
| 43 | + securesystemslib>=0.20.0 |
| 44 | + |
| 45 | +[options.packages.find] |
| 46 | +exclude = tests |
| 47 | + |
4 | 48 | [check-manifest] |
5 | 49 | ignore = |
6 | 50 | requirements-dev.txt |
|
0 commit comments