-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 795 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
README = open('README.md', 'r').read()
setup(
name='naivepdf',
version='0.3',
author='naivefeeling',
author_email='625424539@qq.com',
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',
],
)