Skip to content

Commit 70aaee5

Browse files
author
Hong-Thai Nguyen
authored
Merge pull request #2 from thaichat04/change-setup
Add setup to upload into Pypi
2 parents 9bf77bd + 401641f commit 70aaee5

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

setup.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
from setuptools import setup, find_packages
2-
import sys, os
32

4-
version = '0.2.0'
3+
version = '1.0'
54

65
long_description = open('README.rst').read()
76

87
setup(
98
name='python-cfonb',
109
version=version,
11-
description="Pure Python lib to read/write CFONB files.",
10+
description="Pure Python lib to read/write CFONB files., forked from https://github.com/akretion/python-cfonb",
1211
long_description=long_description,
1312
classifiers=[],
14-
keywords='cfonb bank statement parser',
15-
author='Florent Pigout',
16-
author_email='[email protected]',
17-
url='',
18-
license='MIT',
13+
keywords=['cfonb', 'bank', 'statement', 'parser'],
14+
author='Dhatim',
15+
author_email='[email protected]',
16+
url='https://github.com/dhatim/python-cfonb',
17+
download_url = 'https://github.com/dhatim/python-cfonb/archive/1.0.tar.gz',
18+
license='LGPL',
1919
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
2020
include_package_data=True,
2121
zip_safe=False,

0 commit comments

Comments
 (0)