Skip to main content

Demonstrate docstrings and does nothing really.

Project description

pyoffice

what is this?

example for best practices in python packaging.

requirements

pip install -r requirements.txt

install

to install PyOffice, do:

git clone https://github.com/mynameisvinn/PyOffice
cd PyOffice
python setup.py install

or, get it straight from pypi:

python -m pip install PyOffice

once installed, python search for pyoffice in site-packages folder, which isdefined in .bash_profile.

export PYTHONPATH=$PYTHONPATH:/usr/local/lib/python2.7/site-packages

you can check python path from terminal:

env | grep PYTHONPATH

verify that install placed source code in the appropriate site-packages folder with:

cd /usr/local/lib/python2.7/site-packages

you should see "PyOffice" source code. other libraries (eg sklearn, scipy) reside in this folder too.

usage

>>> from PyOffice import CalculatorProcessor
>>> my_calc = CalculatorProcessor()
>>> my_calc.add(2,3)
# 5

create a pypi package

package script

create setup.py, which will be the workhorse of pypi packaging, and then package script by

python setup.py sdist # creates dist folder, which stores tarred copy

upload to pypi

assuming youve registered with pypi, do

python setup.py register # authenticate
python setup.py sdist upload # uploads entire file to pypi

you can view package at https://pypi.python.org/pypi/PyOffice/0.1.0

install with pip

youve seen this a million times before:

python -m pip install PyOffice

helpful links

Project details


Release history Release notifications | RSS feed

This version

0.2

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

PyOffice-0.2.tar.gz (2.7 kB view hashes)

Uploaded Source

Built Distribution

PyOffice-0.2-py3-none-any.whl (3.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page