setup.py 382 B

12345678910111213
  1. from distutils.core import setup
  2. setup(
  3. name = 'pysystemd',
  4. packages = ['pysystemd'],
  5. version = '1.0.1',
  6. description = 'a systemd binding Library in python',
  7. author = 'alimiracle',
  8. author_email = 'alimiracle@riseup.net',
  9. url="https://notabug.org/alimiracle/pysystemd",
  10. license='GPL v3',
  11. keywords = ['services', 'init', 'systemd'],
  12. classifiers = [],
  13. )