Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 494 Bytes

File metadata and controls

40 lines (29 loc) · 494 Bytes

my_python_package

Test Python Package

How to Build

Run in terminal

$ python setup.py check

$ python setup.py build

$ python setup.py sdist bdist_wheel

How to Install

Run in terminal

$ pip install ad_python-0.0.1.tar.gz

How to Test

Example:

$ pytest -v test/test_utils.py

How to Use

Example:

>>> import ad_python
>>> print(ad_python.__version__)
0.0.1
>>> from ad_python import utils
>>> print(utils.func_add(3, 4))
7