12345678910111213 |
- from distutils.core import setup
- setup(
- name = 'pysystemd',
- packages = ['pysystemd'],
- version = '1.0.1',
- description = 'a systemd binding Library in python',
- author = 'alimiracle',
- author_email = 'alimiracle@riseup.net',
- url="https://notabug.org/alimiracle/pysystemd",
- license='GPL v3',
- keywords = ['services', 'init', 'systemd'],
- classifiers = [],
- )
|