setup.py 706 B

123456789101112131415161718192021222324
  1. #!/usr/bin/env python3
  2. import setuptools
  3. with open('requirements.txt') as f:
  4. requirements = f.read().splitlines()
  5. setuptools.setup(
  6. name = "ozwadmin-splash",
  7. version = "0.0.1",
  8. author = "Joachim M. Giæver",
  9. description = "Simple splash screen",
  10. long_description = "Splash to help connect nessecary plugs to the snap package of ozwadmin",
  11. url = "https://git.giaever.org/home-assistant-snap/ozwadmin",
  12. packages = setuptools.find_packages(),
  13. classifiers = [
  14. "Programming Language :: Python :: 3"
  15. ],
  16. install_requires = requirements,
  17. python_requires = '>=3.8',
  18. entry_points = {
  19. 'console_scripts': 'ozwadmin-splash=splash.main:run'
  20. }
  21. )