Skip to content

Commit

Permalink
Relase 1.0 created on pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
radzhome committed Apr 28, 2016
1 parent c242fba commit 14cf9d0
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 10 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
*.pyc
*.swp
.DS_Store
.idea/
.idea/

dist
build

2 changes: 1 addition & 1 deletion LICENSE.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2015, Greg Taylor
Copyright (c) 2015, Radtek
All rights reserved.

Redistribution and use in source and binary forms, with or without modification,
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
include LICENSE.rst
include README.rst
include README.md
recursive-include examples *.txt *.py
recursive-include docs *
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Fedex Commercial Invoice #
# Fedex Invoice #

Fedex Commercial Invoice Generation using Python (using reportlab)
* Fedex Commercial Invoice Generation using Python (using reportlab)

### What is this repository for? ###

Expand All @@ -9,7 +9,9 @@ Fedex Commercial Invoice Generation using Python (using reportlab)

### How do I get set up? ###

* download repo, install requirements.txt using pip
* Using pip: `[sudo] pip install fedex-invoice`
* OR download repo, install `requirements.txt` using pip
* OR use `[sudo] python setup.py install`

### Usage ###

Expand Down
1 change: 1 addition & 0 deletions fedex_invoice/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
VERSION = __version__ = '1.0.1'
11 changes: 7 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from setuptools import setup, find_packages

import fedex_invoice

CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
Expand All @@ -14,16 +15,18 @@
KEYWORDS = 'fedex commercial invoice generator using reportlab'

setup(
name='FedexInvoice',
version='1.0',
author='Radzhome',
name='fedex-invoice',
version=fedex_invoice.__version__,
author='radzhome',
author_email='[email protected]',
maintainer='radzhome',
packages=find_packages(),
install_requires=['reportlab'],
include_package_data=True,
download_url='TODO',
url='https://github.com/radzhome/fedex-commercial-invoice/',
license='BSD',
description='Fedex Commercial Invoice generator.',
description='Fedex Commercial Invoice generator, invoice templating using reportlab',
long_description=open('README.md').read(),
platforms=['Platform Independent'],
classifiers=CLASSIFIERS,
Expand Down

0 comments on commit 14cf9d0

Please sign in to comment.