From 86d20abbe419671cafaec0327d1cf3f0d66857b1 Mon Sep 17 00:00:00 2001 From: Ahmed Gad Date: Sat, 8 Apr 2023 15:40:58 -0400 Subject: [PATCH 1/2] Create FUNDING.yml --- .github/FUNDING.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..5892ed6 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,12 @@ +# These are supported funding model platforms + +github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] +# paypal: http://paypal.me/ahmedfgad # Replace with a single Patreon username +open_collective: pygad +ko_fi: # Replace with a single Ko-fi username +tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +liberapay: # Replace with a single Liberapay username +issuehunt: # Replace with a single IssueHunt username +otechie: # Replace with a single Otechie username +custom: ['https://donate.stripe.com/eVa5kO866elKgM0144', 'http://paypal.me/ahmedfgad'] # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] From 692baeb46ec9c42081bf937dec402e2088723d01 Mon Sep 17 00:00:00 2001 From: Yuxi Liu <33951560+yuxi-liu-wired@users.noreply.github.com> Date: Wed, 31 Jan 2024 16:01:52 -0800 Subject: [PATCH 2/2] added setup.py --- setup.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..6b34fdb --- /dev/null +++ b/setup.py @@ -0,0 +1,21 @@ +from setuptools import setup, find_packages + +setup( + name='ArithmeticEncodingPython', + version='1.0.0', + packages=find_packages(), + description='Data Compression using Arithmetic Encoding in Python', + long_description=open('README.md').read(), + long_description_content_type='text/markdown', + author='Ahmed Fawzy Gad', + author_email='ahmed.f.gad@gmail.com', + url='https://github.com/ahmedfgad/ArithmeticEncodingPython', + py_modules=['pyae'], + install_requires=[ + ], + classifiers=[ + 'Programming Language :: Python :: 3', + 'License :: OSI Approved :: MIT License', + 'Operating System :: OS Independent', + ], +)