File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+
3+ python setup.py sdist bdist_wheel
Original file line number Diff line number Diff line change 1- import setuptools
1+ from setuptools import setup , find_packages
22
33# https://packaging.python.org/guides/distributing-packages-using-setuptools/#setup-args
4- setuptools . setup (name = 'netlicensing-python-client' ,
5- version = '0.0.2 ' ,
4+ setup (name = 'netlicensing-python-client' ,
5+ version = '0.0.1 ' ,
66 description = 'Python wrapper for Labs64 NetLicensing RESTful API' ,
77 long_description = open ('README.md' ).read ().strip (),
88 long_description_content_type = "text/markdown" ,
1818 'CI' : 'https://github.com/Labs64/NetLicensingClient-python/actions' ,
1919 },
2020 py_modules = ['netlicensing' ],
21- install_requires = [],
21+ include_package_data = True ,
22+ install_requires = ['requests' ],
23+ packages = find_packages (),
2224 license = 'Apache-2.0' ,
2325 zip_safe = False ,
2426 keywords = 'labs64 netlicensing licensing licensing-as-a-service license license-management software-license client restful restful-api python wrapper api client' ,
Original file line number Diff line number Diff line change 11import pytest
22
33def test_about (netlicensing ):
4- netlicensing .about ()
4+ about_text = netlicensing .about ()
5+ assert u'LaaS' in about_text
You can’t perform that action at this time.
0 commit comments