1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- [build-system]
- requires = ['setuptools>=61.0']
- build-backend = 'setuptools.build_meta'
- [bdist_wheel]
- universal = 0
- [project]
- name = 'setux_actions'
- version = '0.2503.1'
- dynamic = ['readme']
- description = 'System deployment'
- authors = [
- {name = 'Louis RIVIERE', email = 'louis@riviere.xyz'},
- ]
- requires-python = ">=3.9"
- dependencies = [
- 'setux_core>=0.2502.0',
- 'pybrary>=0.2452.0',
- ]
- keywords = [
- 'utility',
- ]
- classifiers = [
- 'Development Status :: 3 - Alpha',
- 'License :: OSI Approved :: MIT License',
- 'Programming Language :: Python :: 3',
- "Operating System :: POSIX :: Linux",
- "Environment :: Console",
- 'Intended Audience :: Developers',
- 'Intended Audience :: Information Technology',
- 'Intended Audience :: System Administrators',
- 'Topic :: System :: Installation/Setup',
- 'Topic :: System :: Systems Administration',
- 'Topic :: Utilities',
- ]
- license = {text = 'MIT'}
- [project.urls]
- pypi = 'https://pypi.org/project/setux-actions'
- repository = 'https://notabug.org/dugres/setux_actions'
- [tool.setuptools]
- include-package-data = false
- [tool.setuptools.dynamic]
- readme = {file = ['README.md'], content-type = 'text/markdown'}
- [tool.setuptools.packages.find]
- include = ['setux.*']
|