-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
38 lines (32 loc) · 1.06 KB
/
setup.py
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
#!/usr/bin/env python3
from setuptools import (find_packages, setup)
with open(".github/README.md", "r") as fh:
long_description = fh.read()
setup(
name = "inject_javascript",
version = "0.0.8",
author = "S0AndS0",
author_email = "[email protected]",
description = "Inject JavaScript within PDF document body",
long_description = long_description,
long_description_content_type = "text/markdown",
url = "https://github.com/pdf-utilities/inject_javascript",
packages = find_packages(),
install_requires = [
'PyPDF2',
'watch-path',
],
entry_points = {
'console_scripts': [
'inject-pdf-javascript = inject_javascript.cli:main'
],
},
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Pre-processors',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: POSIX :: Linux',
],
)