forked from AlticeLabsProjects/mdns-publisher
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
53 lines (44 loc) · 1.3 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# setup.py - Avahi/mDNS name publisher module.
#
# Copyright (c) 2018, Carlos Rodrigues
#
import os
from setuptools import setup
manifest = {
"name": "mdns-publisher",
"version": "0.9.2",
"description": "Publish CNAMEs pointing to the local host over Avahi/mDNS",
"author": "Carlos Rodrigues",
"author_email": "[email protected]",
"url": "https://github.com/carlosefr/mdns-publisher",
"packages": [
"mpublisher",
"mpublisher._avahi"
],
"install_requires": [
"dbus-python >= 1.1",
],
"scripts": [
"mdns-publish-cname",
],
"license": "MIT",
"keywords": "Avahi mDNS CNAME",
"long_description": open(os.path.join(os.path.dirname(__file__), "README.rst")).read(),
"classifiers": [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers",
],
"zip_safe": False,
}
setup(**manifest)
# vim: set expandtab ts=4 sw=4: