You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
951 B
Python
42 lines
951 B
Python
#!/usr/bin/env python
|
|
import os
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
VERSION = 0.1
|
|
version = os.path.join('onedns', '__init__.py')
|
|
execfile(version)
|
|
|
|
README = open('README.md').read()
|
|
|
|
setup(
|
|
name='onedns',
|
|
version=VERSION,
|
|
packages=find_packages(),
|
|
author='Justin Riley',
|
|
author_email='justin.t.riley@gmail.com',
|
|
url="https://github.com/fasrc/onedns",
|
|
description="Dynamic DNS for OpenNebula",
|
|
long_description=README,
|
|
install_requires=[
|
|
"oca>=4.10.0",
|
|
"IPy>=0.83",
|
|
"dnslib>=0.9.6",
|
|
"dnspython>=1.14.0",
|
|
"wrapt>=1.10.8",
|
|
],
|
|
setup_requires=[
|
|
'pytest-runner>=2.9'
|
|
],
|
|
tests_require=[
|
|
"pytest>=3.0.3",
|
|
"pytest-cov>=2.4.0",
|
|
"pytest-flake8>=0.7",
|
|
"testfixtures>=4.10.0",
|
|
"vcrpy>=1.9.0",
|
|
"mock>=2.0.0",
|
|
],
|
|
entry_points=dict(console_scripts=['onedns = onedns.cli:main']),
|
|
zip_safe=False
|
|
)
|