From 5552218a110a6ca45dd06abefc2292a3e7658c9e Mon Sep 17 00:00:00 2001 From: Jason Lobo Date: Fri, 26 Mar 2021 14:17:27 +0000 Subject: [PATCH] Create setup.py --- setup.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..3c12e2f --- /dev/null +++ b/setup.py @@ -0,0 +1,19 @@ +""" +This is a setup.py script generated by py2applet + +Usage: + python setup.py py2app +""" + +from setuptools import setup + +APP = ['The Chomsky Index.py'] +DATA_FILES = ['h5', 'html', 'icon_white.png'] +OPTIONS = {'includes': 'pandas._libs.tslibs.base', 'iconfile': 'icon_black.icns'} + +setup( + app=APP, + data_files=DATA_FILES, + options={'py2app': OPTIONS}, + setup_requires=['py2app'], +)