Exemple #1
0
"""Version for wocose."""
from gitversion import rewritable_git_version
__VERSION__ = rewritable_git_version(__file__)

Exemple #2
0
# a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.

"""Setup file for wry."""
from setuptools import setup, find_packages
from os import path
from gitversion import rewritable_git_version

__VERSION__ = rewritable_git_version(path.dirname(path.abspath(__file__)) + '/wry/version.py')

setup(
    name='wry',
    version=__VERSION__,
    packages=find_packages(),
    author='Ahmad Jagot',
    author_email='*****@*****.**',
    description='Library for managing Intel AMT.',
    long_description=open('README.md').read(),
    url='https://github.com/ocadotechnology/wry/',
    test_suite='wry.tests',
    install_requires=[
        'pywsman >= 2.5.2, < 2.6.0',
        'xmltodict >= 0.7',
    ],
Exemple #3
0
from gitversion import rewritable_git_version
__VERSION__ = rewritable_git_version(__file__).split('+')[0]