forked from slhck/compress-pptx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·48 lines (41 loc) · 1.52 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
#!/usr/bin/env python3
from os import path
from setuptools import setup
here = path.abspath(path.dirname(__file__))
# read version string
with open(path.join(here, "compress_pptx", "__init__.py")) as version_file:
version = eval(version_file.read().split(" = ")[1].strip())
# Get the long description from the README file
with open(path.join(here, "README.md")) as f:
long_description = f.read()
# Get the history from the CHANGELOG file
with open(path.join(here, "CHANGELOG.md")) as f:
history = f.read()
setup(
name="compress_pptx",
version=version,
description="Compress images in PPTX files",
long_description=long_description + "\n\n" + history,
long_description_content_type="text/markdown",
author="Werner Robitza",
author_email="[email protected]",
url="https://github.com/slhck/compress-pptx",
packages=["compress_pptx"],
include_package_data=True,
install_requires=["tqdm"],
license="MIT",
zip_safe=False,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
python_requires=">=3.8",
entry_points={"console_scripts": ["compress-pptx = compress_pptx.__main__:main"]},
)