-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (23 loc) · 855 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
import setuptools
from LZW import __version__
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="LZW-Compressor",
author="MapleCCC",
author_email="[email protected]",
description="A compression and decompression program for LZW archive format",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/MapleCCC/LZW-Compressor",
version=__version__,
packages=setuptools.find_packages(),
license="WTFPL 2.0",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
install_requires=open("requirements.txt", "r").read().splitlines(),
entry_points={"console_scripts": ["lzw=LZW.__main__:main",]},
)