Skip to content

Commit 60aad05

Browse files
authored
Merge pull request #1 from yuxi-liu-wired/main
added setup.py
2 parents 86d20ab + 692baeb commit 60aad05

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

setup.py

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(
4+
name='ArithmeticEncodingPython',
5+
version='1.0.0',
6+
packages=find_packages(),
7+
description='Data Compression using Arithmetic Encoding in Python',
8+
long_description=open('README.md').read(),
9+
long_description_content_type='text/markdown',
10+
author='Ahmed Fawzy Gad',
11+
author_email='[email protected]',
12+
url='https://github.com/ahmedfgad/ArithmeticEncodingPython',
13+
py_modules=['pyae'],
14+
install_requires=[
15+
],
16+
classifiers=[
17+
'Programming Language :: Python :: 3',
18+
'License :: OSI Approved :: MIT License',
19+
'Operating System :: OS Independent',
20+
],
21+
)

0 commit comments

Comments
 (0)