mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-23 12:50:22 +08:00
DEV: Adds type hinting stub for zipline.api
as well as tooling and docs to generate this for each release Also moved Cython files to package_data, so that we install them, instead of just packaging them.
This commit is contained in:
@@ -270,9 +270,13 @@ setup(
|
||||
},
|
||||
author='Quantopian Inc.',
|
||||
author_email='opensource@quantopian.com',
|
||||
packages=find_packages('.', include=['zipline', 'zipline.*']),
|
||||
packages=find_packages(include=['zipline', 'zipline.*']),
|
||||
ext_modules=ext_modules,
|
||||
include_package_data=True,
|
||||
package_data={root.replace(os.sep, '.'):
|
||||
['*.pyi', '*.pyx', '*.pxi', '*.pxd']
|
||||
for root, dirnames, filenames in os.walk('zipline')
|
||||
if '__pycache__' not in root},
|
||||
license='Apache 2.0',
|
||||
classifiers=[
|
||||
'Development Status :: 4 - Beta',
|
||||
|
||||
Reference in New Issue
Block a user