File tree Expand file tree Collapse file tree 1 file changed +16
-5
lines changed Expand file tree Collapse file tree 1 file changed +16
-5
lines changed Original file line number Diff line number Diff line change 2828
2929from setuptools import setup
3030from Cython .Build import cythonize
31+
3132# import numpy
3233
3334
34- # include_dirs=[numpy.get_include()],
35- # requires=['numpy', 'Cython'])
35+ # include_dirs=[numpy.get_include()],
36+ # requires=['numpy', 'Cython'])
3637
3738
3839from setuptools import setup , find_packages , Extension
7172 long_description_content_type = "text/markdown" ,
7273 include_package_data = True ,
7374 keywords = "grim" ,
74- packages = find_packages (include = [
75+ packages = find_packages (
76+ include = [
7577 "grim" ,
7678 "grim.imputation" ,
7779 "grim.imputation.imputegl" ,
7880 "grim.imputation.graph_generation" ,
7981 "grim.validation" ,
8082 "grim.conf" ,
81- ]),
83+ ]
84+ ),
8285 test_suite = "tests" ,
8386 tests_require = test_requirements ,
8487 url = "https://github.com/nmdp-bioinformatics/py-grim" ,
8588 zip_safe = False ,
86- ext_modules = cythonize ([Extension ("grim.imputation.imputegl.cutils" , ["grim/imputation/imputegl/cutils.pyx" ])], language_level = "3" )
89+ ext_modules = cythonize (
90+ [
91+ Extension (
92+ "grim.imputation.imputegl.cutils" ,
93+ ["grim/imputation/imputegl/cutils.pyx" ],
94+ )
95+ ],
96+ language_level = "3" ,
97+ ),
8798)
You can’t perform that action at this time.
0 commit comments