Skip to content

Commit

Permalink
update_setup_info
Browse files Browse the repository at this point in the history
  • Loading branch information
naivefeeling committed Oct 1, 2019
1 parent 54c482e commit 6b0d124
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,22 @@
from setuptools import setup

README = open('README.md', 'r').read()

setup(
name='naivepdf',
version='0.1',
version='0.2',
author='naivefeeling',
author_email='[email protected]',
long_description=README,
long_description_content_type="text/markdown",
packages=['naivepdf', 'naivepdf.decoder', 'naivepdf.encoding', 'naivepdf.utils'],
package_data={'naivepdf': ['cmap/*/*', 'Adobe-Core35_AFMs-314/*']},
description='yet another pdf texts and tables extractor',
url='https://github.com/naivefeeling/naivepdf.git', # use the URL to the github repo
keywords=['pdf', 'pdfparser', 'pdfextract'],
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: MIT License',
],
)

0 comments on commit 6b0d124

Please sign in to comment.