-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Andreea Dima
committed
Sep 6, 2018
1 parent
d156433
commit 3f35410
Showing
4 changed files
with
24 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,4 +16,4 @@ Optional arguments: | |
Installation | ||
============ | ||
|
||
`python setup.py install` | ||
`pip install domain-connect-dyndns` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', | ||
|
@@ -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'], | ||
|