-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (29 loc) · 943 Bytes
/
setup.py
File metadata and controls
35 lines (29 loc) · 943 Bytes
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
from setuptools import setup, find_packages
version = "0.3.3"
setup(name="stapler",
version=version,
description="Manipulate PDF documents from the command line",
keywords="pdf utility cli concatenate tool",
author="Philip Stark, Fred Wenzel",
author_email="git@codechaos.ch",
url="https://github.com/hellerbarde/stapler",
install_requires = [
"PyPDF2>=1.24",
"more-itertools>=2.2"
],
#include_package_data=True,
packages=find_packages(),
package_data={"": ["LICENSE", "CONTRIBUTORS", "README.md", ]},
entry_points="""
[console_scripts]
stapler = staplelib:main
pdf-stapler = staplelib:main
""",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 2",
"Intended Audience :: Science/Research",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License"
],
)