forked from dmachard/python-unbound-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.j2
32 lines (28 loc) · 889 Bytes
/
setup.j2
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
#!/usr/bin/python
import setuptools
with open("README.md", "r") as fh:
LONG_DESCRIPTION = fh.read()
KEYWORDS = ('unbound console control remote client')
setuptools.setup(
name="unbound_console",
version="{{ version }}",
author="Denis MACHARD",
author_email="d.machard@gmail.com",
description="Python console for unbound",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/dmachard/unbound-console",
packages=['unbound_console', 'tests'],
include_package_data=True,
platforms='any',
keywords=KEYWORDS,
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
],
extras_require={
"yaml": "pyyaml"
}
)