We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 86d20ab + 692baeb commit 60aad05Copy full SHA for 60aad05
setup.py
@@ -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