GithubHelp home page GithubHelp logo

scikit-example's Introduction

scikit-example

This is a simple scikit. The main intent is to serve as a template for new scikits.

Installation from sources

In the root directory of the package, just do:

python setup.py install

Distribution

A scikit is a standard Python package, which can be distributed by a number of different means:

Source distribution

To prepare a source distribution of the package:

python setup.py sdist

Eggs

Eggs are a format for easy distribution of pre-built packages. It is cross-platform for packages without any C code, and platform specific otherwise. To build an egg:

python setup.py bdist_egg

Binary installers

Binary installers are platform specific. On Windows, you can do:

python setup.py bdist_wininst

On Mac OS X (this requires an extension, bdist_mpkg, available on Pypi):

python setup.py bdist_mpkg

Registration onto PyPi

A Scikit should be registered to PyPi, the Python package index. This will make it easier for people to find and download the package, and moreover it will list the package in the Scikits index: http://scikits.appspot.com/scikits

For more information, see the PyPi tutorial

To register a package on PyPi and upload the sources at the same time:

python setup.py register sdist upload

You can also upload the files manually using the forms on the PyPi web page: https://pypi.python.org/

Binary distributions as eggs can also be uploaded to pypi. For example:

python setup.py bdist_egg upload

Once a source or binary distribution is uploaded to PyPi, people can simply install it with either with pip or with easy_install:

pip scikit-example
easy_install scikit-example

If you don't want to install as an egg, but from the sources:

easy_install -eNb example scikit-example

Will download the most recent sources, and extract them into the example directory.

scikit-example's People

Contributors

pv avatar jgoutin avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.