-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
27 lines (25 loc) · 1.05 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
VERSION = '0.2'
setup(
name='arithmetic_compressor',
version=VERSION,
author='Biereagu Sochima',
author_email='<[email protected]>',
description='An implementation of the Arithmetic Coding algorithm in Python, along with advanced models like PPM (Prediction by Partial Matching), Context Mixing and Simple Adaptive models',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/kodejuice/arithmetic-compressor',
packages=find_packages(),
test_suite='unittest.TestLoader().discover("tests")',
classifiers=[
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
],
keywords=['arithmetic', 'coding', 'ppm', 'encoding', 'encoder',
'prediction', 'context mixing', 'adaptive models'],
python_requires='>=3.7',
)