-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·54 lines (51 loc) · 1.97 KB
/
setup.py
File metadata and controls
executable file
·54 lines (51 loc) · 1.97 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
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python3
from setuptools import setup, find_packages
with open("README.md") as fp:
long_description = fp.read()
setup(
name="pdfslim",
version="1.1.0",
description="`pdfslim` takes a number of PDF files and tries to optimize them through a suitable call to `ghostscript`.",
license="GPLv3",
author="Federico Stra",
author_email="stra.federico@gmail.com",
url="https://github.com/FedericoStra/pdfslim",
project_urls={
"Code": "https://github.com/FedericoStra/pdfslim",
"Issue tracker": "https://github.com/FedericoStra/pdfslim/issues",
},
# packages=find_packages(),
py_modules=["pdfslim"],
install_requires=[],
entry_points={
"console_scripts": [
"pdfslim=pdfslim:main",
],
},
long_description=long_description,
long_description_content_type="text/markdown",
keywords = 'PDF, GhostScript',
classifiers=[
# complete classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Office/Business",
"Topic :: System :: Archiving :: Compression",
"Topic :: Utilities",
],
)