Skip to content

Commit 14cf9d0

Browse files
committed
Relase 1.0 created on pypi
1 parent c242fba commit 14cf9d0

File tree

6 files changed

+20
-10
lines changed

6 files changed

+20
-10
lines changed

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
*.pyc
22
*.swp
33
.DS_Store
4-
.idea/
4+
.idea/
5+
6+
dist
7+
build
8+

LICENSE.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2015, Greg Taylor
1+
Copyright (c) 2015, Radtek
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without modification,

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
include LICENSE.rst
2-
include README.rst
2+
include README.md
33
recursive-include examples *.txt *.py
44
recursive-include docs *

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Fedex Commercial Invoice #
1+
# Fedex Invoice #
22

3-
Fedex Commercial Invoice Generation using Python (using reportlab)
3+
* Fedex Commercial Invoice Generation using Python (using reportlab)
44

55
### What is this repository for? ###
66

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

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

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

1416
### Usage ###
1517

fedex_invoice/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
VERSION = __version__ = '1.0.1'

setup.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from setuptools import setup, find_packages
22

3+
import fedex_invoice
34

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

1617
setup(
17-
name='FedexInvoice',
18-
version='1.0',
19-
author='Radzhome',
18+
name='fedex-invoice',
19+
version=fedex_invoice.__version__,
20+
author='radzhome',
2021
author_email='[email protected]',
22+
maintainer='radzhome',
2123
packages=find_packages(),
2224
install_requires=['reportlab'],
2325
include_package_data=True,
26+
download_url='TODO',
2427
url='https://github.com/radzhome/fedex-commercial-invoice/',
2528
license='BSD',
26-
description='Fedex Commercial Invoice generator.',
29+
description='Fedex Commercial Invoice generator, invoice templating using reportlab',
2730
long_description=open('README.md').read(),
2831
platforms=['Platform Independent'],
2932
classifiers=CLASSIFIERS,

0 commit comments

Comments
 (0)