Skip to content

Commit

Permalink
Add travis
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreea Dima committed Sep 6, 2018
1 parent d156433 commit 3f35410
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 5 deletions.
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
language: python
python:
- "3.6"
install: pip install -r requirements.txt
script: py.test --cov=clocking tests
after_success: coveralls
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ Optional arguments:
Installation
============

`python setup.py install`
`pip install domain-connect-dyndns`
6 changes: 6 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
coverage==4.5.1
coveralls==1.5.0
domain-connect==0.0.4
pytest==3.7.4
unittest2==1.1.0
validators==0.12.2
15 changes: 11 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,23 @@
#!/usr/bin/env python
from setuptools import setup

with open("README.md", "r") as fh:
long_description = fh.read()

setup(
name = 'domain-connect-dyndns',
version = '0.0.1',
description = 'Python client library for Dynamic DNS using Domain Connect',
license = 'MIT',
long_description=long_description,
long_description_content_type="text/markdown",
author = 'Andreea Dima',
author_email = '[email protected]',
url="https://github.com/Domain-Connect/DomainConnectDDNS-Python",
classifiers = [
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3',
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
],
packages = [
'dyndns',
Expand All @@ -17,9 +26,7 @@
'validators >= 0.12.2',
'requests >= 2.19.1',
'dnspython >= 1.15.0',
],
dependency_links = [
'https://github.com/andreeadima/domainconnect_python/tarball/master#egg=domainconnect_python-0.0.3'
'domainconnect_python >= 0.0.4',
],
entry_points = {
'console_scripts': ['domain-connect-dyndns=dyndns.command_line:main'],
Expand Down

0 comments on commit 3f35410

Please sign in to comment.