-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (35 loc) · 847 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='pdfs-rename',
version='1.0',
description="Bulk rename PDFs.",
author="Visgean",
author_email='[email protected]',
url='https://github.com/visgean/pdfs-rename',
packages=[
'rename',
],
package_dir={'pdfs-rename': 'pdfs-rename'},
license="MIT",
keywords='pdfs',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
install_requires=[
'pdftotext',
'python-slugify',
'PyPDF2',
],
entry_points={
'console_scripts': [
'pdfs-rename = rename.main:main'
]
},
)