-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (39 loc) · 1.49 KB
/
Copy pathsetup.py
File metadata and controls
44 lines (39 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
try:
from setuptools import setup
except:
from distutils.core import setup
import os
here = os.path.abspath(os.path.dirname(__file__))
long_description = open(os.path.join(here, 'README.rst'), 'rt').read()
setup(
name = 'pydf2json',
version = '2.4.0',
packages=['pydf2json', 'pydf2json.scripts'],
url = 'https://github.com/kingaling/pydf2json',
license = 'GPL-3.0',
author = 'Shane King',
author_email = 'kinagling@meatchicken.net',
description = 'PDF analysis. Convert contents of PDF to a JSON-style python dictionary.',
long_description = long_description,
entry_points = {
'console_scripts': [
'pydf.py = pydf2json.scripts.pydf:main',
'pdfcrack.py = pydf2json.scripts.pdfcrack:cl'
]
},
python_requires = '>=2.6, <3',
keywords = ['pdf', 'pydf2json', 'pdf analysis', 'python', 'python pdf', 'pdf crack', 'laikaboss'],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows :: Windows 7',
'Operating System :: Microsoft :: Windows :: Windows 10',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Security'
]
)