-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (40 loc) · 1.3 KB
/
setup.py
File metadata and controls
47 lines (40 loc) · 1.3 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
from setuptools import setup, find_packages
setup(
name="pdfpipe",
version="2.0",
packages=find_packages(),
scripts=['pdfpipe.py'],
install_requires=[
'fpdf2>=2.7',
],
package_data={
'': ['*.txt', '*.md'],
},
# metadata for upload to PyPI
author="Colin Jacobs",
author_email="[email protected]",
description="Python command line tool to quickly create PDFs from text content",
license="Public Domain",
keywords="pdf command-line",
url="https://github.com/coljac/pdfpipe",
# Classifiers help users find your project by categorizing it
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: Public Domain",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
],
python_requires='>=3.7',
entry_points={
'console_scripts': [
'pdfpipe=pdfpipe:main',
],
},
)