Skip to content

Commit

Permalink
[INIT] Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Sylvain GARANCHER committed Feb 17, 2017
0 parents commit 50af251
Show file tree
Hide file tree
Showing 6 changed files with 1,111 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v1.0, 2017-02-10 -- Initial release
661 changes: 661 additions & 0 deletions LICENSE.txt

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include *.txt
5 changes: 5 additions & 0 deletions README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
======
ZPL II
======

This library allows you to generate ZPL II labels.
16 changes: 16 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# -*- coding: utf-8 -*-
# Copyright (C) 2016 SYLEAM (<http://www.syleam.fr>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

from distutils.core import setup

setup(
name='zpl2',
version='1.0',
author='Sylvain Garancher',
author_email='[email protected]',
py_modules=['zpl2'],
license='LICENSE.txt',
description='Python library that generates ZPL II labels',
long_description=open('README.txt').read(),
)
Loading

0 comments on commit 50af251

Please sign in to comment.