1
0

setup.py 246 B

1234567891011
  1. #!/usr/bin/env python3
  2. from distutils.core import setup
  3. setup(
  4. name='NiceGUI',
  5. version='1.0',
  6. author='Zauberzeug',
  7. author_email='info@zauberzeug.com',
  8. url='https://github.com/zauberzeug/nicegui/',
  9. packages=['nicegui'],
  10. )