mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
support other SQLite wrappers, and various hooks needed by grist-static (#516)
This commit is contained in:
15
sandbox/setup.py
Normal file
15
sandbox/setup.py
Normal file
@@ -0,0 +1,15 @@
|
||||
# see bundle_as_wheel.sh
|
||||
|
||||
from distutils.core import setup
|
||||
import glob
|
||||
|
||||
files = glob.glob('grist/*.py') + glob.glob('grist/**/*.py')
|
||||
names = [f.split('.py')[0] for f in files]
|
||||
|
||||
setup(name='grist',
|
||||
version='1.0',
|
||||
include_package_data=True,
|
||||
packages=['grist', 'grist/functions', 'grist/imports'],
|
||||
package_data={
|
||||
'grist': ['grist/tzdata.data'],
|
||||
})
|
||||
Reference in New Issue
Block a user