123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- [build-system]
- requires = ['setuptools>=61.0']
- build-backend = 'setuptools.build_meta'
- [bdist_wheel]
- universal = 0
- [project]
- name = 'setux_plus'
- version = '0.2501.0'
- dynamic = ['readme']
- description = 'System deployment'
- authors = [
- {name = 'Louis RIVIERE', email = 'louis@riviere.xyz'},
- ]
- maintainers = [
- {name = 'Louis RIVIERE', email = 'louis@riviere.xyz'},
- ]
- dependencies = [
- 'setux>=0.2422.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]
- Homepage = 'https://pypi.org/project/setux-plus'
- pypi = 'https://pypi.org/project/setux-plus'
- repository = 'https://notabug.org/dugres/setux_plus'
- Documentation = 'https://setux-plus.readthedocs.io'
- [tool.setuptools.dynamic]
- readme = {file = ['README.md'], content-type = 'text/markdown'}
- [tool.setuptools.packages.find]
- include = ['setux.*']
- [tool.setuptools]
- include-package-data = false
|