-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
48 lines (44 loc) · 1.4 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
39
40
41
42
43
44
45
46
47
48
"""
Marisol
=======
Python library that can be used to add bates numbers to existing PDF files.
Links
=====
* `Source Code <https://github.com/wikkiewikkie/Marisol>`_
* `Issues <https://github.com/wikkiewikkie/Marisol/issues>`_
"""
import marisol
from setuptools import setup
install_requires = [
'pypdf2==1.26.0',
'reportlab==3.3.0'
]
setup(
name='Marisol',
version=marisol.__version__,
url='http://github.com/wikkiewikkie/Marisol',
license=marisol.__license__,
author=marisol.__author__,
author_email=marisol.__email__,
description='Add bates numbers, text stamps, and redactions to existing PDF files',
packages=['marisol'],
zip_safe=True,
platforms='any',
install_requires=install_requires,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Legal Industry',
'License :: OSI Approved',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Office/Business',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)