setup.py 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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_mappings',
  7. version = '0.2343.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_mappings',
  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. install_requires = [
  30. 'setux_core>=0.2343.0',
  31. ],
  32. packages = find_namespace_packages(
  33. include=['setux.*']
  34. ),
  35. )