This repository was archived by the owner on Aug 18, 2021. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ include libsemigroups_cppyy/include/python_element.h
Original file line number Diff line number Diff line change 3030import libsemigroups_cppyy .detail
3131from libsemigroups_cppyy .adapters import *
3232
33- cppyy .load_library ("libsemigroups" )
33+ try :
34+ cppyy .load_library ("libsemigroups.1" )
35+ except RuntimeError as e :
36+ cppyy .load_library ("libsemigroups" )
3437
3538cppyy .cppdef ("#define FMT_HEADER_ONLY" )
3639cppyy .cppdef ("#define HPCOMBI_CONSTEXPR_FUN_ARGS" )
4750cppyy .include ("libsemigroups/schreier-sims.hpp" )
4851cppyy .include ("libsemigroups/report.hpp" )
4952
53+ cppyy .add_include_path (__file__ [:__file__ .rfind (os .path .sep )])
5054cppyy .include ("include/python_element.h" )
5155
5256from libsemigroups_cppyy .action import LeftAction , RightAction
File renamed without changes.
Original file line number Diff line number Diff line change 44from setuptools import find_packages , setup
55
66setup (name = 'libsemigroups_cppyy' ,
7- version = '0.0.0 ' ,
7+ version = '0.0.1 ' ,
88 description = 'A minimal cppyy wrapper for the libsemigroups C++ library' ,
99 url = 'http://github.com/libsemigroups/libsemigroups_cppyy' ,
1010 author = 'James D. Mitchell, Nicolas Thiéry' ,
1111 author_email = 'jdm3@st-andrews.ac.uk, Nicolas.Thiery@u-psud.fr' ,
1212 license = 'GPL3' ,
1313 install_requires = ['cppyy' ,'networkx' ],
1414 packages = find_packages (exclude = ['tests' ]),
15- tests_require = ['nose' ],
16- zip_safe = False )
15+ tests_require = ['tox' ],
16+ zip_safe = False ,
17+ include_package_data = True )
You can’t perform that action at this time.
0 commit comments