-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from wfscheper/clientless-pom
- Loading branch information
Showing
23 changed files
with
655 additions
and
3,714 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
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 @@ | ||
Walter Scheper <Walter.Scheper@sas.com> <ratlaw@gmail.com> |
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,49 @@ | ||
language: python | ||
sudo: false | ||
cache: pip | ||
env: | ||
global: | ||
- LD_PRELOAD=/lib/x86_64-linux-gnu/libSegFault.so | ||
- SEGFAULT_SIGNALS=all | ||
matrix: | ||
- TOXENV=check | ||
- TOXENV=docs | ||
matrix: | ||
include: | ||
- python: '2.7' | ||
env: | ||
- TOXENV=py27,report | ||
- python: '3.3' | ||
env: | ||
- TOXENV=py33,report | ||
- python: '3.4' | ||
env: | ||
- TOXENV=py34,report | ||
- python: '3.5' | ||
env: | ||
- TOXENV=py35,report | ||
- python: '3.6' | ||
env: | ||
- TOXENV=py36,report | ||
- python: 'pypy-5.4' | ||
env: | ||
- TOXENV=pypy,report | ||
before_install: | ||
- python --version | ||
- uname -a | ||
- lsb_release -a | ||
install: | ||
- pip install tox | ||
- virtualenv --version | ||
- easy_install --version | ||
- pip --version | ||
- tox --version | ||
script: | ||
- tox -v | ||
after_failure: | ||
- more .tox/log/* | cat | ||
- more .tox/*/log/* | cat | ||
notifications: | ||
email: | ||
on_success: never | ||
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 |
---|---|---|
@@ -0,0 +1,56 @@ | ||
========== | ||
Change Log | ||
========== | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on `Keep a Changelog`_ | ||
and this project adheres to `Semantic Versioning`_. | ||
|
||
`Unreleased`_ | ||
============= | ||
|
||
Changed | ||
------- | ||
|
||
* Use pbr for release management | ||
* Add support for python 3.4, 3.5, and 3.6. | ||
* Pom objects can now be loaded from a file or string and do not require | ||
a maven client. | ||
|
||
Fixed | ||
----- | ||
|
||
* Add license_file entry to setup.cfg | ||
* Create cache dir securely and usable on non-POSIX filesystems. | ||
|
||
Deprecated | ||
---------- | ||
|
||
* Drop support for python 2.6 | ||
|
||
`0.2.0`_ - 2017-06-07 | ||
|
||
Changed | ||
------- | ||
|
||
* Unpin dependency versions. Allow major version compatibility. | ||
|
||
`0.1.0`_ - 2015-10-10 | ||
|
||
Added | ||
----- | ||
|
||
* A simple maven repository client that can fetch and search for artifacts and | ||
metadata. | ||
* Support for local and http maven repositories. | ||
* A simple cache for http maven repositories | ||
* A python binding to POM data that dynamically loads information from POM | ||
inheritance and dependency management. | ||
* Python implementation of Maven version comparision and Maven version ranges. | ||
|
||
.. _Keep a Changelog: http://keepachangelog.com/ | ||
.. _Semantic Versioning: http://semver.org/ | ||
.. _0.1.0: https://github.com/sassoftware/pymaven/compare/114b10e...3a844cd | ||
.. _0.2.0: https://github.com/sassoftware/pymaven/compare/3a844cd...f99a287 | ||
.. _Unreleased: https://github.com/sassoftware/pymaven/compare/f99a287...HEAD |
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,13 @@ | ||
graft docs | ||
graft pymaven | ||
graft tests | ||
|
||
include AUTHORS.rst | ||
include CHANGELOG.rst | ||
include ContributorAgreement.txt | ||
include LICENSE | ||
include README.rst | ||
|
||
include tox.ini .travis.yml appveyor.yml | ||
|
||
global-exclude *.py[cod] __pycache__ *.so *.dylib |
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,13 @@ | ||
======= | ||
Pymaven | ||
======= | ||
|
||
Overview | ||
======== | ||
|
||
Pymaven is a Python library for interfacing with the maven build system. There | ||
are two major interfaces: | ||
|
||
* pymaven.client provides a basic maven repository client | ||
* pymaven.pom provides a Pom object that can provide progromatic access to | ||
a maven pom file |
This file was deleted.
Oops, something went wrong.
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
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
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
Oops, something went wrong.