setup.py 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. from os.path import join, dirname, abspath
  2. from setuptools import setup, find_namespace_packages
  3. curdir = abspath(dirname(__file__))
  4. readme = open(join(curdir, 'README.md')).read()
  5. setup(
  6. name = 'setux_plus',
  7. version = '0.22.03.0',
  8. description = 'System deployment',
  9. long_description = readme,
  10. long_description_content_type='text/markdown',
  11. keywords = ['utility', ],
  12. url = 'https://notabug.org/dugres/setux_plus',
  13. author = 'Louis RIVIERE',
  14. author_email = 'louis@riviere.xyz',
  15. license = 'MIT',
  16. classifiers = [
  17. 'Development Status :: 3 - Alpha',
  18. 'License :: OSI Approved :: MIT License',
  19. 'Programming Language :: Python :: 3',
  20. "Operating System :: POSIX :: Linux",
  21. "Environment :: Console",
  22. 'Intended Audience :: Developers',
  23. 'Intended Audience :: Information Technology',
  24. 'Intended Audience :: System Administrators',
  25. 'Topic :: System :: Installation/Setup',
  26. 'Topic :: System :: Systems Administration',
  27. 'Topic :: Utilities',
  28. ],
  29. python_requires='>3.6',
  30. install_requires = [
  31. 'setux>=0.22.03.0',
  32. ],
  33. packages = find_namespace_packages(
  34. include=['setux.*']
  35. ),
  36. )