setup.py 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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.rst')).read()
  5. setup(
  6. name = 'teamux',
  7. version = '0.22.7.2',
  8. description = 'Tmux library',
  9. long_description = readme,
  10. keywords = ['utility', ],
  11. url = 'https://notabug.org/dugres/teamux/src/stable',
  12. author = 'Louis RIVIERE',
  13. author_email = 'louis@riviere.xyz',
  14. license = 'MIT',
  15. classifiers = [
  16. 'Development Status :: 3 - Alpha',
  17. 'License :: OSI Approved :: MIT License',
  18. 'Programming Language :: Python :: 3',
  19. "Operating System :: POSIX :: Linux",
  20. "Environment :: Console",
  21. 'Intended Audience :: Developers',
  22. 'Intended Audience :: Information Technology',
  23. 'Intended Audience :: System Administrators',
  24. 'Topic :: System :: Systems Administration',
  25. 'Topic :: Utilities',
  26. ],
  27. python_requires='>3.6',
  28. package_dir = {
  29. 'teamux': 'teamux',
  30. },
  31. packages = [
  32. 'teamux',
  33. ],
  34. )