mirror of
https://github.com/jasons-gh/the-chomsky-index.git
synced 2026-03-11 08:54:36 +00:00
Create setup.py
This commit is contained in:
parent
982c75181d
commit
5552218a11
1 changed files with 19 additions and 0 deletions
19
setup.py
Normal file
19
setup.py
Normal file
|
|
@ -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'],
|
||||
)
|
||||
Loading…
Reference in a new issue