-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
9 changed files
with
88 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -52,3 +52,6 @@ docs/_build/ | |
|
||
# PyBuilder | ||
target/ | ||
|
||
# Virtualenv | ||
.pyfreelan |
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,11 @@ | ||
language: python | ||
python: | ||
- "2.7" | ||
install: | ||
- pip install -r dev_requirements.txt | ||
- pip install --editable . | ||
script: nosetests --with-coverage | ||
notifications: | ||
email: | ||
on_success: change | ||
on_failure: always |
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,2 +1,4 @@ | ||
# pyfreelan | ||
pyfreelan | ||
|
||
A HTTP(s) client/server integration library for | ||
[freelan](http://www.freelan.org). |
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 @@ | ||
0.0.1 |
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 @@ | ||
nose >= 1.3, < 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
""" | ||
FreeLAN integration HTTP(S) client/server. | ||
""" |
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,17 @@ | ||
""" | ||
Entry points for pyfreelan. | ||
""" | ||
|
||
|
||
def server_main(): | ||
""" | ||
The server entry point. | ||
""" | ||
pass | ||
|
||
|
||
def client_main(): | ||
""" | ||
The client entry point. | ||
""" | ||
pass |
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,46 @@ | ||
from setuptools import ( | ||
setup, | ||
find_packages, | ||
) | ||
|
||
setup( | ||
name='pyfreelan', | ||
url='http://pyfreelan.readthedocs.org/en/latest/index.html', | ||
author='Julien Kauffmann', | ||
author_email='[email protected]', | ||
license='GPLv3', | ||
version=open('VERSION').read().strip(), | ||
description=( | ||
"Provides HTTP(S) client/server features to the FreeLAN VPN software" | ||
), | ||
long_description="""\ | ||
pyfreelan is the default HTTP(S) client/server integration library for the | ||
FreeLAN VPN software. | ||
It can be used either through the freelan binary, or as a standalone | ||
application. | ||
""", | ||
packages=find_packages(exclude=[ | ||
'tests', | ||
]), | ||
install_requires=[ | ||
'tornado >= 4.0, < 5', | ||
], | ||
entry_points={ | ||
'console_scripts': [ | ||
'pyfreelan_server = pyfreelan.main:server_main', | ||
'pyfreelan_client = pyfreelan.main:client_main', | ||
], | ||
}, | ||
test_suite='tests', | ||
classifiers=[ | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: System Administrators', | ||
'Operating System :: MacOS :: MacOS X', | ||
'Operating System :: Microsoft :: Windows', | ||
'Operating System :: POSIX', | ||
'Programming Language :: Python', | ||
'Topic :: Software Development', | ||
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', | ||
], | ||
) |
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,3 @@ | ||
""" | ||
pyfreelan tests. | ||
""" |